解决vue刷新404

2019-11-19 08:44:34   前端

 

Apache在.htaccess添加
<IfModule mod_rewrite.c>
  RewriteEngine On
  RewriteBase /
  RewriteRule ^index\.html$ - [L]
  RewriteCond %{REQUEST_FILENAME} !-f
  RewriteCond %{REQUEST_FILENAME} !-d
  RewriteRule . /index.html [L]
</IfModule>


Nginx

try_files $uri $uri/ /index.html;