我只是想清理一个像这样的网址:
/// FROM :
http://mydomain.com/about.php
http://mydomain.com/contact.php
/// TO:
http://mydomain.com/about
http://mydomain.com/contact
我的 .htaccess 文件:
Options +FollowSymlinks
RewriteEngine on
RewriteRule ^about about.php [NC]
错误:
Not Found
The requested URL /about was not found on this server.
这里有什么问题?