nginx配置应该怎么写 location /xxx{ root /home/aaa/xxx; proxy_pass http://127.0.0.1:8001; }
location /yyy{ root /home/aaa/yyy; proxy_pass http://127.0.0.1:8002 }
怎么取不到public里面的css等文件?
比如 http://121.14.58.212/2014 这个站点, 后台跳转到了 http://121.14.58.212:8001/ http://121.14.58.212/2014 这个站点的 css文件404 错误了 。。
怎么办啊,急求解决
8 回复
css路径不对 在浏览器中看的地址是 http://121.14.58.212/stylesheets/style.css 其实应该是这个 http://121.14.58.212/2014/stylesheets/style.css
@alsotang 你说对了。原项目是没有 2014前缀的。在http://121.14.58.212:8001/ 中是完全正常的, 大神知道怎么解决不 node写的web项目 都是从跟路径 / 开始的, 能不能让所有请求加一个前缀 /2014这种的