基于引用者重定向错误文档?
在 .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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不可以,您不能根据 HTTP_REFERER 字段的值有条件地声明
ErrorDocument
指令。但是,将
RewriteRule
与RewriteCond
结合使用,您可以手动重写/指向所需的文件/url,这将显示错误页面。No, you cannot declare
ErrorDocument
directive conditionally based on the value of HTTP_REFERER field.But using
RewriteRule
in conjunction withRewriteCond
you could manually rewrite/point to the required file/url which will display an error page.