问题:
访问 http://xx/landf/ 正常
访问 http://xx/landf/index.html 没有渲染
访问 http://xx/others 没有渲染
在 vue 中点击链接跳转正常,直接输入 vue 路由链接 没有渲染
配置参考的网上的。。。 请问这是什么原因呢?
nginx 配置如下:
location /landf/ { root /home/ubuntu/python/lost_found/web/; index index.html index.htm; } location / { try_files $uri $uri/ /landf/index.html; index index.html; } 