日本免费高清视频-国产福利视频导航-黄色在线播放国产-天天操天天操天天操天天操|www.shdianci.com

學無先后,達者為師

網(wǎng)站首頁 編程語言 正文

h5 uniapp history模式下刷新頁面404

作者:沉、睡 更新時間: 2022-01-30 編程語言

h5 uniapp history模式下刷新頁面404

問題:uniapp 的history 把#去掉了,但是當刷新頁面的時候出現(xiàn)404 解決方案 需要服務端支持

如果 URL 匹配不到任何靜態(tài)資源,則應該返回同一個 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.csdn.net/zz975896590/article/details/119991104

欄目分類
最近更新