.htacces - 具有 2 条规则的 RewriteRule
我有查询字符串:
/index.php?abrir=usuario&id=1&pagina=1
所以,我需要更改为:
/usuario/1/1
我创建代码:
RewriteRule ^([^-]+)/$ /index.php?abrir=$1&%{QUERY_STRING} [L]
如何修改?因为我只能得到:
/usuario&id=1&pagina=1
谢谢!
I have the Query String:
/index.php?abrir=usuario&id=1&pagina=1
So, i need to change to:
/usuario/1/1
I create the code:
RewriteRule ^([^-]+)/$ /index.php?abrir=$1&%{QUERY_STRING} [L]
How I can modified that? Because I only can get:
/usuario&id=1&pagina=1
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
对于其他链接,只需在其上方添加一行:
For other links, just add a line above it:
如果您的 id 和 pagina 参数是数字,您可以使用此规则:
If your id and pagina arguments are digits you can use this rule :