我使用.htaccess
重写规则将带有.html
扩展名的网址重定向到.php
。
这些是我目前的重写规则:
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)\.html$ a/$1.php [NC]
如何让这些在IIS6上运行?
答案 0 :(得分:0)
Apache(XAMPP中的Web服务器).htaccess
(mod_rewrite)规则不能在IIS6上运行。您需要安装第三方重写器,例如HeliconTech's ISAPI_Rewrite才能实现此目的。
IIS7 +支持开箱即用的重写,但格式不同。