NGinx反向代理但jquery失败

NGinx反向代理但jquery失败,jquery,nginx,proxy,Jquery,Nginx,Proxy,我使用NGinx重定向JBoss应用程序: --> 此解决方案可行,但某些模块的工作方式与jquery不同: 控制台错误 POST http://mywebsite.com/SaikuIS/rest/saiku/USER/query/2F70DD1F-3449-…antillon.AllSampleTypes%5D.%5BToutes%20les%20types%20d'%C3%A9chantillon%5D 400 (Illegal character in path at index 152

我使用NGinx重定向JBoss应用程序: -->

此解决方案可行,但某些模块的工作方式与jquery不同:

控制台错误

POST http://mywebsite.com/SaikuIS/rest/saiku/USER/query/2F70DD1F-3449-…antillon.AllSampleTypes%5D.%5BToutes%20les%20types%20d'%C3%A9chantillon%5D 400 (Illegal character in path at index 152: http://mywebsite.com/SaikuIS/rest/saiku/USER/query/2F70DD1F-3449-574E-9326-26DC27F53E25/axis/COLUMNS/dimension/Type%20d'echantillon/hierarchy/[Type%20d'echantillon.AllSampleTypes]/[Type%20d'echantillon.AllSampleTypes].[Toutes%20les%20types%20d'%c3%a9chantillon]) 
proxy.conf

server{
        listen 80;
        server_name test.mywebsite.*;
        location / {
                proxy_pass http://127.0.0.1:8283/;
        }
}
nginx.conf

http {
    include       /etc/nginx/mime.types;
    default_type  application/octet-stream;
    log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
                      '$status $body_bytes_sent "$http_referer" '
                      '"$http_user_agent" "$http_x_forwarded_for"';
    access_log  /var/log/nginx/access.log  main;
    sendfile        on;
    keepalive_timeout  65;
    include /etc/nginx/conf.d/*.conf;

您能帮我解决这个问题吗?

请不要在您的原始问题中进行编辑。对于任何寻求解决方案的人,请签出