ionic4打包和ngix配置

ionic4打包 ng run app:build --base-href=/edu/course/mobile
壓縮打包 ng run app:build:production --base-href=/edu/course/mobile
其中--base-href=後面爲在域名後面顯示的路徑,例如:域名 + /edu/course/mobilehtml

如下爲ngix配置,mobile爲打包出來的文件夾,可自行修更名稱
#課程中心手機端
location /edu/course/mobile{
rewrite .* /index.html break; 指向展現的首頁
root /home/icampus3.0/front/mobile/; 資源存放路徑
}
location /edu/course{
alias /home/icampus3.0/front/mobile/; 加載對應的文件,不加的話刷新頁面會報錯,找不頁面
}app

location /edu/lessons/mobile { //重定向 訪問 域名 + /edu/course/mobile也能夠
rewrite / 域名 + /edu/course/mobile;
}less

相關文章
相關標籤/搜索