我可以在 htaccess RewriteCond 中获取匹配的变量吗?

发布于 2024-12-13 01:50:03 字数 307 浏览 0 评论 0原文

如何访问像这样的规则中的匹配变量?

RewriteCond %{HTTP_REFERER} ^http://example\.com/dir[0-9]/?(.*)?$
RewriteRule ^images/(.*)$ other_dir(MATCHED_STRING)/images/$1 [L]

我想要网址: http://example.com/dir1 将其所有图像重定向到 /other_dir1/images/$1

How can I access the matched variable in the a rule like this one ?

RewriteCond %{HTTP_REFERER} ^http://example\.com/dir[0-9]/?(.*)?$
RewriteRule ^images/(.*)$ other_dir(MATCHED_STRING)/images/$1 [L]

I would like the url : http://example.com/dir1
to redirect all its images to /other_dir1/images/$1

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

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

发布评论

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

评论(1

只有影子陪我不离不弃 2024-12-20 01:50:03

使用 % 从 RewriteCond 访问向后引用。因此,在您的示例中:

RewriteCond %{HTTP_REFERER} ^http://example\.com/dir[0-9]/?(.*)?$
RewriteRule ^images/(.*)$ other_dir%1/images/$1 [L]

%1 将替换为 HTTP 引用中的 RewriteCond 中匹配的内容。

Use the % to access back refernces from a RewriteCond. So in your example:

RewriteCond %{HTTP_REFERER} ^http://example\.com/dir[0-9]/?(.*)?$
RewriteRule ^images/(.*)$ other_dir%1/images/$1 [L]

The %1 will be replaced with what was matched in the RewriteCond in the HTTP referer.

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