我在example.com/drupal
安装了Drupal - 现在我需要将安装向上移动到域根目录。
所以我需要的重写规则是重定向所有现有的网址 - 例如example.com/drupal/some_section/somepage
到example.com/some_section/somepage
等。
我该怎么做?
答案 0 :(得分:7)
试试这个:
RewriteEngine On
RewriteBase /
RewriteRule ^drupal/(.+)$ $1
希望这有帮助
答案 1 :(得分:0)
如果人们转到example.com/drupal/...
,重写example.com/drupal/...
之类的网址会有所帮助,但似乎您想要另外一种方式:人们使用example.com/...
并转到您的网站。
为此,我认为您需要更改Web服务器配置中的DocumentRoot或为example.com设置虚拟主机