RewriteCond:有任何解决方法可以将 HTTP_REFERER 与 HTTP_HOST 匹配吗?
1)我需要验证这些连接是由我的同一网站还是由其他人引用。 2)我不能简单地手动键入 HTTP_HOST,因为 .htaccess 文件是由 subversion 处理的,并在具有不同 HTTP_HOST 值的不同开发环境之间共享。
因此,目标是找到一种解决方法,使这种情况透明地工作,无论什么情况环境是,并让 svn 轻松处理 htaccess,无需手动修复。
谢谢!
1) I need to verify whether the connections are referred by my same site or by someone else.
2) I can NOT simply type the HTTP_HOST manually because the .htaccess file is meant to be handled by subversion and shared across different development environments with different HTTP_HOST values
So the goal is to find a workaround to make this condition work transparently no matter what the environment is, and keep htaccess easily handled by svn without need of manual fixes.
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 Apache 2,您可以执行以下操作:
请注意,如果是 HTTP/1.1 之前的请求,HTTP_HOST 也可以为空。
With Apache 2 you can do this:
Note that HTTP_HOST can also be empty in case of an pre-HTTP/1.1 request.