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

但这对我不起作用。

最佳答案

您想将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测试了这个代码。

关于.htaccess - 使用htaccess转换网址...删除并添加单词,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/42465488/

10-12 06:14