这可以帮助您(将其放入/.htaccess文件中):
Options +FollowSymlinksIndexIgnore */*RewriteEngine on# if a directory or a file exists, use it directlyRewriteCond %{REQUEST_FILENAME} -s [OR]RewriteCond %{REQUEST_FILENAME} -l [OR]RewriteCond %{REQUEST_FILENAME} -dRewriteCond %{REQUEST_URI} !/api# otherwise forward it to index.html RewriteRule ^.*$ - [NC,L]RewriteRule ^app/. /app/index.html [NC,L]注意: 对于较新的Apache版本,另请参阅下一个答案,该答案使用起来更容易
FallbackResource



