你好我有这个网址http://localhost/index.php?a=group&name=groupname
我希望它看起来像http://localhost/group/groupname
其中a =是动态的并且名称相同。对于htaccess
答案 0 :(得分:0)
尝试:
RewriteEngine On
RewriteRule ^([^./]+)/groupname/?$ /index.php?a=$1&name=groupname [QSA,NC,L]
这将重写:
到
编辑:
如果组名也是dynmic,那么在模式中,只需将组名替换为([^ /] +)并替换< strong> name = groupname ,目标路径中包含 name = $ 2 。