基于引用者重定向错误文档?

发布于 2024-11-19 13:17:02 字数 294 浏览 1 评论 0原文

在 .htaccess 中,是否可以根据引用者重定向 ErrorDocument 请求?

例如,用户请求 http://domain.com/folder1/ [这是 404] 是否可能仅当该请求来自domain.com时重定向到 https://securedomain%{REQUEST_URI} 或类似的内容。 。

谢谢。

Is it possible, in .htaccess, to redirect ErrorDocument requests based on their referrer?

For example user requests http://domain.com/folder1/ [which is a 404] would it be possible to redirect that request to only if it came from domain.com to https://securedomain%{REQUEST_URI} or something similar...

Thanks.

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

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

发布评论

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

评论(1

遗忘曾经 2024-11-26 13:17:02

不可以,您不能根据 HTTP_REFERER 字段的值有条件地声明 ErrorDocument 指令。

但是,将 RewriteRuleRewriteCond 结合使用,您可以手动重写/指向所需的文件/url,这将显示错误页面。

No, you cannot declare ErrorDocument directive conditionally based on the value of HTTP_REFERER field.

But using RewriteRule in conjunction with RewriteCond you could manually rewrite/point to the required file/url which will display an error page.

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