根据 url 中连字符后的最后一个数字进行重定向

发布于 2024-10-20 20:52:45 字数 261 浏览 0 评论 0原文

我正在尝试使用 .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 技术交流群。

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

发布评论

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

评论(1

诠释孤独 2024-10-27 20:52:45

也许如下:

RewriteRule ^.*-(\d+)\.htm$ /index.php?id=$1

未经测试,但看看是否有帮助。这是基于我对正则表达式的了解以及我的 示例从各个地方找到。

还有一个 有用的网站,它可以自动执行 .htaccess 修改过程,尽管我没有看到任何与 RegEx 有关的内容。

Perhaps the following:

RewriteRule ^.*-(\d+)\.htm$ /index.php?id=$1

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.

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