基于referer的重定向 HTTP_REFERER htaccess

发布于 2024-10-19 16:43:05 字数 562 浏览 0 评论 0原文

我有一个问题,我想根据引用网址中的子字符串重定向用户,我如何使用 htaccess 来实现这一点?

  1. 用户位于 http://example.com/aqeel/videos/
  2. 上面有一个超链接页面 http://demo.example.com/
  3. 当用户到达 http://demo.example.com/,我希望他被重定向到 http://demo.example.com/login/aqeel/,这里 aqeel 是从步骤 1 URL 中的 htaccess 中的referer url 捕获的子字符串。

提前致谢,

I've an issue where i want to redirect a user on the basis of a substring from referered url, How i can accomplish that using htaccess?

  1. User is on http://example.com/aqeel/videos/
  2. There is a hyperlink on the above page http://demo.example.com/
  3. When user reaches http://demo.example.com/, I want him to be redirected to http://demo.example.com/login/aqeel/, Here aqeel is the substring captured from the referer url in htaccess from step 1 URL.

Thanks in Advance,

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

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

发布评论

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

评论(1

回首观望 2024-10-26 16:43:05

您可以使用下面的代码来实现该功能:

RewriteCond %{HTTP_REFERER} http\:\/\/example.com/([a-z]+)/videos/
RewriteRule (.*)$ /login/%1/

我尝试了我的域..并且它有效...希望也能与您一起工作...:)

You can use below code to make that work:

RewriteCond %{HTTP_REFERER} http\:\/\/example.com/([a-z]+)/videos/
RewriteRule (.*)$ /login/%1/

I tried on my domain.. and it works... hope that too work with you... :)

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