Apache URL 重写 (mod_rewrite) 和 uuid

发布于 2024-11-19 23:00:23 字数 500 浏览 2 评论 0原文

我想在apache中重写以下URL:

abc.php?id=1234&token=xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx

其中xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx是一个V4 UUID

我尝试制定如下重写规则:

RewriteRule  ^/ABC/([0-9]+)$/^([0-9a-fA-F]){8}-([0-9a-fA-F]){4}-([0-9a-fA-F]){4}-([0-9a-fA-F]){4}-([0-9a-fA-F]){12}.([0-1]){1}/ /abc.php?id=$1&token=$2

但似乎它并没有真正起作用。

我想我不需要一个精确表示 V4 UUID 的正则表达式,但只是简单的正则表达式来表示 UUID 字符串中的字符和连字符,有人对 apache 正则表达式有好主意吗?

I want to rewrite the following URL in apache:

abc.php?id=1234&token=xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx

where xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx is a V4 UUID

I have tried to make rewrite rule like:

RewriteRule  ^/ABC/([0-9]+)$/^([0-9a-fA-F]){8}-([0-9a-fA-F]){4}-([0-9a-fA-F]){4}-([0-9a-fA-F]){4}-([0-9a-fA-F]){12}.([0-1]){1}/ /abc.php?id=$1&token=$2

but it seems that it's not really working.

I think i dun need a regex that exactly represent a V4 UUID but just simple regex to represent the Characters and hyphen in the UUID string, anybody has good idea in apache regex?

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

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

发布评论

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

评论(1

白况 2024-11-26 23:00:23

这就是您想要的:

RewriteRule ^/ABC/([0-9]+)/([a-zA-Z0-9\-]+)$ abc.php?id=$1&token=$2

如果您想进一步验证令牌,最好在 PHP 中执行此操作,因为这就是其预期用途。

This is what you want:

RewriteRule ^/ABC/([0-9]+)/([a-zA-Z0-9\-]+)$ abc.php?id=$1&token=$2

If you want to further validate the token, it would be better to do so in PHP, seeing as that's its intended use.

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