vue小笔记 打包之后,刷新页面出现404的问题
官网解决方案https://router.vuejs.org/zh-cn/essentials/history-mode.html需要在后端进行配置ApacheRewriteEngine OnRewriteBase /RewriteRule ^index\.html$ - [L]RewriteCond %{REQUEST_FILENAME} !-f
·
官网解决方案
https://router.vuejs.org/zh-cn/essentials/history-mode.html
需要在后端进行配置
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;
}
更多推荐
已为社区贡献6条内容
所有评论(0)