美文网首页
Nginx配置 - Vue项目(history)页面刷新404解

Nginx配置 - Vue项目(history)页面刷新404解

作者: MrLimLee | 来源:发表于2020-04-02 17:26 被阅读0次

    添加如下配置:

    try_files $uri $uri/ /index.html;

    server {
        listen       80 ;
        server_name  ***.abc.com;
        location / {
            root   /opt/ttjr;
            index index.html;
            try_files $uri $uri/ /index.html;
        }
    }
    

    相关文章

      网友评论

          本文标题:Nginx配置 - Vue项目(history)页面刷新404解

          本文链接:https://www.haomeiwen.com/subject/pptfphtx.html