在 htaccess 文件中重写规则问题
这有助于将我的蹩脚网址更改为 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您用来匹配标题的正则表达式
[az-]+
仅匹配小写字母和“-”,因此不匹配数字。要匹配数字,您需要在括号中输入0-9
: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 a0-9
in the brackets: