vue 打包上传后 刷新页面404

开启HTML5 History Mode后,需要server端的支持

 

 

 

https://router.vuejs.org/zh/guide/essentials/history-mode.html#%E5%90%8E%E7%AB%AF%E9%85%8D%E7%BD%AE%E4%BE%8B%E5%AD%90

 

Apache

 

<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

 

location / {
  try_files $uri $uri/ /index.html;
}


posted @ 2018-07-10 15:36  sssdsyxq  阅读(501)  评论(0)    收藏  举报