uniapp history模式下页面404错误

uniapp 的history 把#去掉了,但是当刷新页面的时候出现404错误
解决方案:需要服务端支持
如果 URL 匹配不到任何静态资源,则应该返回同一个 index.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;
}


» 本文链接:https://blog.apires.cn/archives/2080.html
» 转载请注明来源:Java地带  » 《uniapp history模式下页面404错误》

» 本文章为Java地带整理创作,欢迎转载!转载请注明本文地址,谢谢!
» 部分内容收集整理自网络,如有侵权请联系我删除!

» 订阅本站:https://blog.apires.cn/feed/

标签: UNIAPP, Vue

评论已关闭