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>

浙公网安备 33010602011771号