根据 url 中连字符后的最后一个数字进行重定向
我正在尝试使用 .htaccess 进行以下重定向:
http://www .example.com/blue/widgets/item-4_description-12345.htm 到 /index.php?id=12345
提取最后一个连字符和点之后的数字的最佳正则表达式是什么?
I am trying to do the following redirect using .htaccess:
http://www.example.com/blue/widgets/item-4_description-12345.htm to /index.php?id=12345
What would be the best regular expression to extract the digits after the last hyphen and a dot?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
也许如下:
未经测试,但看看是否有帮助。这是基于我对正则表达式的了解以及我的 示例从各个地方找到。
还有一个 有用的网站,它可以自动执行 .htaccess 修改过程,尽管我没有看到任何与 RegEx 有关的内容。
Perhaps the following:
Untested, but see if that helps. This is based on my knowledge of RegEx, and the examples I found from various places.
There's also a helpful site that automates the process of .htaccess modifications, though I don't see anything pertaining to RegEx.