react-router 使用browserHistory时不能刷新,404或 报错Unexpected token <

前端之家收集整理的这篇文章主要介绍了react-router 使用browserHistory时不能刷新,404或 报错Unexpected token <前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

1、刷新后就报404,应该要怎么改?

解决

如果使用Nginx服务器,加上try_files配置:
 
      location / {
             ......
             try_files $uri /index.html;
         }

2、使用browserHistory时不能刷新,报错:Uncaught SyntaxError: Unexpected token <

解决:
 
      在index.html中修改 .js 引入路径,使用绝对地址进行引入!
 
      例如:

使用绝对路径引入:

原文链接:https://www.f2er.com/react/304528.html

猜你在找的React相关文章