reactjs 当react应用程序重新加载/刷新时,显示404 not fount

ygya80vv  于 2023-01-25  发布在  React
关注(0)|答案(1)|浏览(137)

我面临的问题是,当我重新加载/刷新我的应用程序,然后它说404错误(记住它只显示在生产),而不是开发模式。enter image description here我试过了

Vite and ReactJs
```.

Resolve the react 404 error.
h7appiyu

h7appiyu1#

这将根据主机服务的不同而有所不同。必须配置Nginx或Apache。如果您可以访问配置您的域服务器,您可以添加您的域配置文件如下代码;

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

如果你使用Netlify,添加netlify.toml并粘贴下面的代码。

[[redirects]]
  from = "/*"
  to = "/"
  status = 200

相关问题