如何使用 .htaccess 将我的网址转换为 SEO 友好的网址?
像这样的原始网址:
http://palestinianz.com/?page=person&p=10
和
http://palestinianz.com/?page=persons&c=10
第一个链接的重写 URL 是:
RewriteEngine On
RewriteRule ^([^/]*)/([^/]*)\.html$ /?page=$1&p=$2 [L]
第一个链接的结果:
http://palestinianz.com/person/10.html
如何将重定向规则写入重写的 url !