解决nginx动静分离,css、js、图片等样式不加载的问题

1、加载不出的效果
解决nginx动静分离,css、js、图片等样式不加载的问题_第1张图片
2、修改nginx配置,添加此配置,可以解决此问题

        location ~ .* {
                proxy_pass http://wg;
                proxy_set_header Host $http_host;
                proxy_set_header X-Real-IP $remote_addr;
                proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
        }

解决nginx动静分离,css、js、图片等样式不加载的问题_第2张图片
3、重载一下配置,在访问就行了
/usr/local/nginx/sbin/nginx -s reload
解决nginx动静分离,css、js、图片等样式不加载的问题_第3张图片

你可能感兴趣的:(nginx)