1

我需要重写这个网址:

www.example.com/home.php to www.example.com/home

我在 .htaccess 中编写此代码但不起作用:

RewriteEngine on
RewriteRule ^home$ $home.php [nc]

为什么 ?

4

1 回答 1

1
Options +FollowSymlinks
RewriteEngine on
RewriteRule ^(.*)\$ home.php [nc]

应该管用。没有测试。

于 2012-06-08T20:33:04.723 回答