【发布时间】:2011-12-08 08:33:05
【问题描述】:
我尝试了我在此站点中看到的所有内容,将动态 url 重写为 SEO 友好的 URL。
可能是因为我在 localhost 中使用它?
我试试这个,但也不起作用:
RewriteCond %{THE_REQUEST} ^GET\ /index\.php/?([^ ]*)
RewriteRule ^index\.php/?(.*) /$1 [R,L]
RewriteCond $0 !^index\.php($|/)
RewriteRule .* index.php/$0 [L]
我还提到了一个在线动态 url 生成器,但它也不起作用。请帮忙。
我想重写这两个网址:
index.php?p=home
index.php?p=about me
index.php?p=contact me
【问题讨论】: