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

错误如下:

The requested URL * was not found on this server.

解决办法:

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

<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>

  

posted @ 2022-04-08 22:28  WrYcF  阅读(536)  评论(0编辑  收藏  举报
Live2D