浏览文章

文章信息

Vue上线后 doesn't work properly without JavaScript enabled. Please enable it to continue. 14000

原因,本地的代理在线上未做代理。

请设置接口代理。


接口代理后,刚创建的网站没做代理。


apache示例:

#PROXY-START/api/
<IfModule mod_proxy.c>
    ProxyRequests Off
    SSLProxyEngine on
    ProxyPass /api https://test.trustonlines.com/
    ProxyPassReverse /api https://test.trustonlines.com/
    </IfModule>
#PROXY-END/api/

nginx示例:

server {
    location ~ /test_index\.html$ {
        proxy_pass http://192.168.1.101:8081;
    }
}


原创