故障现象
能正常上传文件,但一直显示“Request failed with status code 404”

原因:
apache配置文件出错
解决办法:
修改apache配置文件
#PROXY-START/
<IfModule mod_proxy.c>
ProxyRequests Off
SSLProxyEngine on
AllowEncodedSlashes NoDecode
ProxyPass / http://127.0.0.1:5212/ nocanon
ProxyPassReverse / http://127.0.0.1:5212/
</IfModule>
#PROXY-END/