.htaccess 重写简单的正则表达式问题

发布于 2024-10-30 18:39:19 字数 405 浏览 0 评论 0原文

我目前有这样的规则:

RewriteRule ^Listing/([a-zA-Z]+)/([a-zA-Z]+)/([a-z0-9]+)$ He_Listed.php?city=$1&area=$2&list=$3 [NC,L]

这对于诸如以下的地址效果很好,

http://www.mysite.co.uk/Listing/UK/London/44

但不适用于:

http://www.mysite.co.uk/Listing/UK/London_Bred/44

因为下划线。我必须在上面的正则表达式中做出什么改变 为了完成这个?第二个“([a-zA-Z]+)”应该变成什么?

I currently have this rule:

RewriteRule ^Listing/([a-zA-Z]+)/([a-zA-Z]+)/([a-z0-9]+)$ He_Listed.php?city=$1&area=$2&list=$3 [NC,L]

This works well for an address such as:

http://www.mysite.co.uk/Listing/UK/London/44

but doesn't for:

http://www.mysite.co.uk/Listing/UK/London_Bred/44

Because of the underscore. What change would i have to make in the above regex in
order to accomplish this? The second "([a-zA-Z]+)" should be turned into what?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

回忆凄美了谁 2024-11-06 18:39:19

应从 [a-zA-Z]+ 变为 [a-zA-Z_]+

should be turned from [a-zA-Z]+ to [a-zA-Z_]+

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文