使用htaccess重写php url的规则

时间:2016-01-31 08:03:35

标签: .htaccess mod-rewrite url-rewriting

你好我有这个网址http://localhost/index.php?a=group&name=groupname 我希望它看起来像http://localhost/group/groupname 其中a =是动态的并且名称相同。对于htaccess

1 个答案:

答案 0 :(得分:0)

尝试:

RewriteEngine On

RewriteRule ^([^./]+)/groupname/?$ /index.php?a=$1&name=groupname [QSA,NC,L]

这将重写:

编辑:

如果组名也是dynmic,那么在模式中,只需将组名替换为([^ /] +)并替换< strong> name = groupname ,目标路径中包含 name = $ 2