apache部署react刷新路由导致错误The requested URL * was not found on this server.

2022-05-06 14:45:23 浏览数 (1)

错误如下:

The requested URL * was not found on this server.

解决办法:

在dist目录下创建 .htaccess 隐藏文件 添加如下内容:

代码语言:javascript复制
<IfModule mod_rewrite.c>
  Options  FollowSymlinks -Multiviews
  RewriteEngine On

  RewriteCond %{REQUEST_FILENAME} !-d
  RewriteCond %{REQUEST_FILENAME} !-f
  RewriteRule ^(.*)$ index.html [L,E=PATH_INFO:$1]
</IfModule>

0 人点赞