我正在使用提供HTML内容和JSON API的应用程序。使用Apache,我为HTML内容创建了自定义错误页面。配置使用类型映射根据浏览器语言指定错误页面的不同版本。
问题是JSON API返回错误。该响应(包含一些描述错误的JSON元素)正在被HTML错误页面替换。如何配置Apache以忽略JSON响应,并将其修改为未修改?
这是JSON请求的接受标头:
Accept:application/json, text/javascript, */*; q=0.01
以下是来自应用程序(Tomcat)的响应标头:
Content-Length:23
Content-Type:text/json;charset=UTF-8
Date:Fri, 02 Sep 2016 15:34:03 GMT
Server:Apache-Coyote/1.1
但是这里是Apache正在返回的响应标头:
Accept-Ranges:bytes
Connection:close
Content-Language:en
Content-Length:7628
Content-Location:404.en.html
Content-Type:text/html; charset=UTF-8
Date:Fri, 02 Sep 2016 15:14:08 GMT
Server:Apache
TCN:choice
Vary:negotiate,accept-language
以下是我的配置,供参考:
的httpd.conf :
Alias /errors/ "/var/www/errors/"
<IfModule mod_negotiation.c>
<IfModule mod_include.c>
<Directory "/var/www/errors">
AllowOverride All
Options IncludesNoExec
AddOutputFilter Includes html
AddHandler type-map var
Order allow,deny
Allow from all
LanguagePriority en es de fr pt
ForceLanguagePriority Prefer Fallback
</Directory>
ErrorDocument 404 /errors/404.var
ErrorDocument 403 /errors/403.var
ErrorDocument 500 /errors/500.var
ErrorDocument 502 /errors/500.var
ErrorDocument 503 /errors/maintenance.var
</IfModule>
</IfModule>
以下是其中一个.var文件的示例。的 404.var :
URI: 404
URI: 404.en.html
Content-type: text/html
Content-language: en en-US
URI: 404.en-GB.html
Content-type: text/html
Content-language: en-GB
URI: 404.fr.html
Content-type: text/html
Content-language: fr
URI: 404.de.html
Content-type: text/html
Content-language: de
URI: 404.es.html
Content-type: text/html
Content-language: es
URI: 404.pt.html
Content-type: text/html
Content-language: pt
以下是另一个.conf文件中的一些其他配置,以确保我包含所有相关内容:
ProxyRequests Off
ProxyPreserveHost On
ProxyErrorOverride On
<Proxy *>
Order deny,allow
Allow from all
</Proxy>
ProxyPass /server-info !
ProxyPass /server-status !
ProxyPass /errors !
ProxyPass / http://localhost:7002/
ProxyPassReverse / http://localhost:7002/
<Location />
Order allow,deny
Allow from all
</Location>
答案 0 :(得分:0)
以下是我用于具有以下标题的请求的内容:
Accept:application/json, text/javascript, */*; q=0.01
<If "%{HTTP_ACCEPT} =~ /json/">
ProxyErrorOverride Off
</If>
答案 1 :(得分:0)
一个更简单的解决方案:
将所有返回json的脚本保存在一个单独的目录中,例如/ajax
或/api
,然后像这样配置Apache:
ProxyErrorOverride On
<Directory "/path/to/ajax/or/api">
ProxyErrorOverride Off
</Directory>