vue 해시 모드에서는 URL에 '#'이 있습니다. 이 문제를 해결하려면 '기록' 모드를 사용하세요. 하지만 기록 모드에서는 페이지를 새로 고치면 페이지가 404로 표시됩니다. 해결책은 nginx로 구성하는 것입니다.
nginx 구성 파일에서 수정방법 1:
location /{ root /data/nginx/html; index index.html index.htm; if (!-e $request_filename) { rewrite ^/(.*) /index.html last; break; } }
방법 2:
vue.js 공식 튜토리얼 https://router.vuejs.org/zh/g...
server { listen 8081;#默认端口是80,如果端口没被占用可以不用修改 server_name myapp.com; root D:/vue/my_app/dist;#vue项目的打包后的dist location / { try_files $uri $uri/ @router;#需要指向下面的@router否则会出现vue的路由在nginx中刷新出现404 index index.html index.htm; } #对应上面的@router,主要原因是路由的路径资源并不是一个真实的路径,所以无法找到具体的文件 #因此需要rewrite到index.html中,然后交给路由在处理请求资源 location @router { rewrite ^.*$ /index.html last; } #.......其他部分省略 }
에 언급됨
위 내용은 Vue 라우팅 기록 모드에서 페이지를 새로 고칠 때 404 문제에 대한 두 가지 솔루션의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!