使用htaccess转换网址...删除并添加单词

时间:2017-02-26 06:32:42

标签: .htaccess url-rewriting seo

这是页面的网址。 的 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

但这不适合我。

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测试了此代码。