1
我想在apache2 conf中寫一些重寫規則,它們不起作用 以下是我在apache conf中的虛擬主機塊。我的操作系統是Ubuntu的12.04服務器版apache2重寫規則不起作用
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文件如下
ReWriteEngine on RewriteRule ^/matchV/(.*) http://host:8080/$1 RewriteRule ^/other/(.*?)$ /httpdcontent/$1
重寫模塊與Apache啓用。
有人可以告訴我,如果我失去了什麼。
感謝,
桑迪普
到底在配置rewritebase的地方? – Sandeep
根據您的覆蓋設置,可以在.htaccess文件中完成此操作。 –