hash服務器配置?
vue hash 模式配置如下:
vue.config.js 配置配置 publicPath 為 “./”
router/index.js 配置mode 修改為 “history”
nginx 線上部署
location /xxx{
root E:/nginxVueApps/;
index index.html index.htm;
try_files $uri $uri/ /index.html;
}
# 注:xxx為打包后的項目名稱
訪問
localhost:8080/xxx最終瀏覽器地址欄的 url 為 localhost:8080/xxx/#/,也就是 hash 模式會帶有 #。