0:安裝
brew install nginx
403
第二行 添加 user root owner;打包路徑修改
默認路徑:
location / {
root root;
index index.html index.htm;
}
修改路徑:
location / {
root /Users/yy/Desktop/SVN/snailLabs/dist; # 項目打包后靜態(tài)文件所
在路徑
index index.html index.htm;
}
3.vue 打包首頁 正常,其他頁面404解決方法
location / {
root /Users/yy/Desktop/SVN/snailLabs/dist; # 項目打包后靜態(tài)文件所
在路徑
index index.html index.htm;
try_filesuri/ @router;
}
location @router {
rewrite ^.*$ /index.html last;
}