码迷,mamicode.com
首页 > 其他好文 > 详细

使用vue-router 刷新 404错误

时间:2016-12-24 16:48:59      阅读:219      评论:0      收藏:0      [点我收藏+]

标签:load   lis   last   blog   ati   nginx   404错误   color   router   

修改nginx.conf

server {
        listen       80;
        server_name  demongao.com www.demongao.com;
        root         /demongao/vueblog/dist;

        # Load configuration files for the default server block.
        include /etc/nginx/default.d/*.conf;

        location / {
             try_files $uri $uri/ @router;
             index index.html;
         }

        location @router {
            rewrite ^.*$ /index.html last;
        }

        error_page 404 /404.html;
            location = /40x.html {
        }

        error_page 500 502 503 504 /50x.html;
            location = /50x.html {
        }
    }

 

使用vue-router 刷新 404错误

标签:load   lis   last   blog   ati   nginx   404错误   color   router   

原文地址:http://www.cnblogs.com/demongao/p/6217506.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!