你试过添加吗
.htaccess
文件到主机的根目录?
如果没有,请将此添加到
然后重新启动apache服务器。
<IfModule mod_rewrite.c>
RewriteEngine On
# If an existing asset or directory is requested go to it as it is
RewriteCond %{DOCUMENT_ROOT}%{REQUEST_URI} -f [OR]
RewriteCond %{DOCUMENT_ROOT}%{REQUEST_URI} -d
RewriteRule ^ - [L]
# If the requested resource doesn't exist, use index.html (in your case /build/index.html)
RewriteRule ^ /build/index.html
</IfModule>
您必须启用
mod_rewrite
虽然