美文网首页
浏览器路由 浏览器刷新,页面404,依靠nginx配置解决

浏览器路由 浏览器刷新,页面404,依靠nginx配置解决

作者: 日不落000 | 来源:发表于2022-07-14 17:30 被阅读0次
  • 浏览器刷新,页面404, 相关Nginx配置如下:

        location ^~/powervischart/static/ {
            alias  /usr/local/webserver/nginx/html/static/;
        }

        location ~* \.(gif|jpg|png|js|css|ttf|woff|woff2)$ {
          #  root  /usr/local/webserver/nginx/html/;
        }

        location /powervischart/ {
            root /usr/local/webserver/nginx/html/;
            # autoindex on;
            index index.html index.htm;
            try_files $uri $uri/ /index.html;
        }

        location / {
             root   /usr/local/webserver/nginx/html/;
             index  index.html index.htm;
             try_files $uri $uri/ /index.html;
        }

参考:
nginx 适配react-router browserRoute 路由问题使用教程

Nginx之location详解

nginx找不到静态(css,js,html)文件404报错,root的解析

相关文章

网友评论

      本文标题:浏览器路由 浏览器刷新,页面404,依靠nginx配置解决

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