重定向问题的正则表达式(Cherokee Web 服务器)

发布于 2024-09-08 03:02:17 字数 316 浏览 4 评论 0原文

我对此有一个真正的问题,因为我无法理解正则表达式。

我正在使用 Cherokee Web 服务器,并且尝试使用正则表达式来执行重定向。

我需要

/parts/tr/accessories/tyres

像这样将以下网址(例如)获取到控制器,

index.php?page=parts&catalogue=tr&category=accessories&subcategory=tyres

有人可以帮助我吗!

谢谢

I'm having a real problem with this because I just can't get my head around regexes.

I'm using Cherokee Web Server and I'm trying to use a regex to perform a redirection.

I need to get the following url (for example)

/parts/tr/accessories/tyres

to the controller like this

index.php?page=parts&catalogue=tr&category=accessories&subcategory=tyres

can somebody help me please!

Thanks

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

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

发布评论

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

评论(1

愛上了 2024-09-15 03:02:18

我不熟悉 Cherokee,但正则表达式是:

([^/]+)/([^/]+)/([^/]+)/([^/]+)

替换模式如下所示:

index.php?page=$1&catalogue=$2&category=$3&subcategory=$4

I am not familiar with Cherokee, but the regex would be:

([^/]+)/([^/]+)/([^/]+)/([^/]+)

and replacement pattern would look like:

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