这是页面的网址。 的 http://www.themobilesapp.com/phones.php?title=Apple
我想对此网址稍作修改。 我想要这样的网址。 的 http://www.themobilesapp.com/phones/Apple
为此我的htaccess代码就是这个。
RewriteEngine On
RewriteRule ^phones/([A-Za-z0-9]+)?$ phones.php?title=$1
但这不适合我。
答案 0 :(得分:0)
您想将http://www.themobilesapp.com/phones/Apple
重定向到http://www.themobilesapp.com/phones.php?title=Apple
。
以下.htaccess规则可以实现:
RewriteEngine On
RewriteRule ^phones/(.*)$ /phones.php?title=$1 [R=301,L,QSA]
我使用htaccess.mwl.be测试了此代码。