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

解决nginx下vue单页面刷新问题

时间:2020-07-24 16:14:03      阅读:176      评论:0      收藏:0      [点我收藏+]

标签:events   live   event   clu   cti   ica   div   out   vue   

1、添加 try_files $uri $uri/ /index.html;

worker_processes  1;

events {
    worker_connections  1024;
}

http {
    include       mime.types;
    default_type  application/octet-stream;


    sendfile        on;

    keepalive_timeout  65;

    server {
        listen       8888;
        server_name  localhost;

        location / {
            root   html/dist;
            index  index.html index.htm;
            try_files $uri $uri/ /index.html;    
        }
}

 

解决nginx下vue单页面刷新问题

标签:events   live   event   clu   cti   ica   div   out   vue   

原文地址:https://www.cnblogs.com/asker009/p/13371753.html

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