在 htaccess 文件中重写规则问题

发布于 2024-12-15 08:02:16 字数 163 浏览 0 评论 0原文

这有助于将我的蹩脚网址更改为 SEO 友好的网址:

^([0-9]+)/[a-z-]+/?$ /details.php?id=$1 [L]

除非...如果我的标题中有数字,则它不起作用。我该如何解决这个问题..或者这里提供了足够的信息来了解吗?

This is working for changing my crappy urls to SEO friendly URLs:

^([0-9]+)/[a-z-]+/?$ /details.php?id=$1 [L]

except... if there's a number in my title, it doesn't work. How might I fix this.. or is there enough information given here to know?

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

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

发布评论

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

评论(1

秋意浓 2024-12-22 08:02:16

您用来匹配标题的正则表达式 [az-]+ 仅匹配小写字母和“-”,因此不匹配数字。要匹配数字,您需要在括号中输入 0-9

RewriteRule ^([0-9]+)/[a-z0-9-]+/?$ /details.php?id=$1 [L]

The regular expression you're using to match the title, [a-z-]+, only matches against lower case letters and a "-", so no numbers. To match numbers, you need a 0-9 in the brackets:

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