我正在尝试在 apache2 conf 中编写一些重写规则,但它们不起作用以下是我在 apache conf 中的虚拟主机块。我的操作系统是ubuntu 12.04服务器版
DocumentRoot /var/www/xyz
<Directory />
Options FollowSymLinks
AllowOverride None
</Directory>
<Directory /var/www/xyz>
Options Indexes FollowSymLinks MultiViews
#AllowOverride None
AllowOverride All
Order allow,deny
#Order deny,allow
allow from all
</Directory>
我有 .htaccess 文件,其中包含一些重写规则,如下所示
重写引擎开启 RewriteRule ^/matchV/(.*) http://host:8080/$1 RewriteRule ^/other/(.*?)$ /httpdcontent/$1
使用 apache 启用了重写模块。
有人可以告诉我是否缺少任何东西。
谢谢,
桑迪普