htacces 重写不捕获下划线
RewriteRule ^pages/([a-zA-Z0-9-z\-]+) load.php?p=$2
问题是下划线 (_) 没有重定向。
this works: my-page-title
not working: my_page_title
有什么帮助吗?
谢谢
RewriteRule ^pages/([a-zA-Z0-9-z\-]+) load.php?p=$2
the problem is underscores (_) are not redirected.
this works: my-page-title
not working: my_page_title
any help?
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只需在方括号内添加下划线:
编辑:看起来您也应该像这样重写它,因为其中有一个无关的
-z
;另外,将变量更改为$1
因为您只有 1 个组:Just add an underscore inside the square brackets:
Edit: looks like you should also rewrite it like so as you have an extraneous
-z
in there; also, changed the variable to$1
since you only have 1 group: