我编写了 .htaccess 文件来将 url 转换为 SEO 友好:
原始网址是:
http://palestinianz.com/?page=person&p=Alex-Atalla
.htaccess 的内容是:
RewriteEngine On
RewriteRule ^([^/]*)\.html$ /?page=person&p=$1 [L]
它应该产生这样的链接:
http://palestinianz.com/Alex-Atalla.html
但是,尽管我将文件放在我网站的根目录中,但它没有任何效果!哪里有问题 ?