使用apache中的ErrorDocument将请求参数转发到自定义404页面?
有没有办法让请求参数“转发”到 apache 中的自定义错误文件,就像 [QSA] 在重写规则上所做的那样?
如果我发送 www.foo.com/doesnotexist?bar=true
并且我在 vhost: 中有这个:
ErrorDocument 404 /customerrorpage
那么它将调用 customerrorpage :
customerrorpage?bar=true
Is there a way to have the request parameters "forward on" to the custom error file in apache much like [QSA] does on rewrite rules?
if i send in www.foo.com/doesnotexist?bar=true
and i have this in vhost:
ErrorDocument 404 /customerrorpage
then it would call customerrorpage with:
customerrorpage?bar=true
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我知道这是一个非常老的问题,但尚未得到解答,因此如果其他人在网站上搜索答案,我将分享我所知道的内容。
Apache 2.2 ErrorDocument 页面表示,当您有一个自定义错误页面时,是本地页面,那么将设置许多环境变量,可以从您的客户错误处理程序中读取这些环境变量。其中一个变量是 REDIRECT_QUERY_STRING,它将包含原始页面具有的查询字符串。因此,在您的示例中,REDIRECT_QUERY_STRING 将包含“bar=true”。
I know this is really old question, but it hasn't been answered and so in case someone else is searching the site for the answer I'll share what I know.
The Apache 2.2 ErrorDocument page says that when you have a Custom Error page which is a local page then a number of environment vars will be set which can be read from your customer error handler. One of the vars is REDIRECT_QUERY_STRING which will contain the query string that the original page had. So in your example the REDIRECT_QUERY_STRING would contain 'bar=true'.