vue路由history模式刷新页面出现404问题
vue hash模式下,URL中存在'#',用'history'模式就能解决这个问题。但是history模式会出现刷新页面后,页面出现404。解决的办法是用nginx配置一下。在nginx的配置文件中修改方法一:server {listen9010;server_namelocalhost;location /{rootF:/mxr/WebApp/mxr/unpackage/dist/build/
·
vue hash
模式下,URL
中存在'#'
,用'history'
模式就能解决这个问题。但是history
模式会出现刷新页面后,页面出现404。解决的办法是用nginx
配置一下。
在nginx
的配置文件中修改
方法一:
server {
listen 9010;
server_name localhost;
location /{
root F:/mxr/WebApp/mxr/unpackage/dist/build/h5/;
index index.html index.htm;
if (!-e $request_filename) {
rewrite ^/(.*) /index.html last;
break;
}
}
}
方法二:
vue.js官方教程里提到的https://router.vuejs.org/zh/guide/essentials/history-mode.html#后端配置例子
server {
listen 9010;#默认端口是80,如果端口没被占用可以不用修改
server_name localhost;
root F:/mxr/WebApp/mxr/unpackage/dist/build/h5/;#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;
}
}
然后再测试刷新后,可以正常显示啦!
更多推荐
已为社区贡献4条内容
所有评论(0)