我有一个非常奇怪的问题。 我在debian 7上使用apache2和vhosts。
一个vhost的.htaccess文件看起来像这样:
RewriteEngine on
RewriteBase /
RewriteCond %{HTTPS} ^off [OR]
RewriteCond %{HTTP_HOST} !^www.example\.com [NC]
RewriteRule ^(.*)$ https://www.example.com/$1 [L,R=301,NC]
RewriteRule ^support$ /support.php [L]
RewriteRule ^privacy$ /privacy.php [L]
RewriteRule ^terms$ /terms.php [L]
RewriteRule ^downloads$ /downloads.php [L]
RewriteRule ^thisworks$ /test.php [L]
mod_rewrite已激活,' AllowOverride All'已经确定了。
最后一次重写规则正在运行,其他规则不起作用。
如果我改变
RewriteRule ^downloads$ /downloads.php [L]
在:
RewriteRule ^files$ /downloads.php [L]
它正在运作。我可以使用example.com/files访问downloads.php
但我不想用别的话。 为什么它不支持,支持,隐私,条款,下载? 这里有什么不对? 这些词似乎被禁止了。
非常感谢。