如何将查询字符串转换为URL名称

时间:2015-05-14 06:46:11

标签: rewrite

我的网址是.... / blogs?id = 1& title = news

现在我需要将其转换为

..../blogs/1/news

在.htaccess。

请如何转换此内容。帮助我。

1 个答案:

答案 0 :(得分:1)

使用以下行:

RewriteEngine on
RewriteRule ^blogs/(.+)/(.+)$ /blogs.php?id=$1&title=$2 [R,L,QSA]