vue小笔记 打包之后,刷新页面出现404的问题

官网解决方案

https://router.vuejs.org/zh-cn/essentials/history-mode.html

需要在后端进行配置

Apache


  RewriteEngine On
  RewriteBase /
  RewriteRule ^index\.html$ - [L]
  RewriteCond %{REQUEST_FILENAME} !-f
  RewriteCond %{REQUEST_FILENAME} !-d
  RewriteRule . /index.html [L]

nginx

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

你可能感兴趣的:(js,vue.js)