问题:h5上传服务器运行后,刷新404,路由失效
这是路由特性决定的,还是在这个文档里说的很清楚
https://router.vuejs.org/zh/guide/essentials/history-mode.html#后端配置例子
想用history又想刷新直接跳到对应页面,就需要后台服务器配置
- Apache
bash
<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
bash
location / {
try_files $uri $uri/ /index.html;
}