htacces 重写不捕获下划线

发布于 2024-10-26 20:59:50 字数 209 浏览 2 评论 0原文

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

我不吻晚风 2024-11-02 20:59:50

只需在方括号内添加下划线:

RewriteRule ^pages/([a-zA-Z0-9-z\-_]+) load.php?p=$1

编辑:看起来您也应该像这样重写它,因为其中有一个无关的 -z ;另外,将变量更改为 $1 因为您只有 1 个组:

RewriteRule ^pages/([A-Za-z0-9\-_]+) load.php?p=$1

Just add an underscore inside the square brackets:

RewriteRule ^pages/([a-zA-Z0-9-z\-_]+) load.php?p=$1

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:

RewriteRule ^pages/([A-Za-z0-9\-_]+) load.php?p=$1
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文