vue-admin-template刷新的时候会遇到404或空白的问题,这个问题是因为开启了history模式
但是后台的nginx或apache并没有支持,这时把后台nginx或apache加上就可以了
#nginx
location / {
try_files $uri $uri/ /index.html;
}
#apache
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.html$ - [L]
RewriteCond %{
REQUEST_FILENAME