标签: rewrite
我的网址是.... / blogs?id = 1& title = news
现在我需要将其转换为
..../blogs/1/news
在.htaccess。
请如何转换此内容。帮助我。
答案 0 :(得分:1)
使用以下行:
RewriteEngine on RewriteRule ^blogs/(.+)/(.+)$ /blogs.php?id=$1&title=$2 [R,L,QSA]