前端:vue.js+nodejs+webpackhtml
後臺:SpringBoot前端
反向代理服務器:nginxvue
思想:將前端代碼打包,讓nginx指向靜態資源,nginx對後臺請求進行轉發。node
npm run buildwebpack
會生成一個dist文件夾。包含一個index.html文件和一個static文件夾,路徑以我本地爲例:nginx
/Users/xxx/ideaProjects/webtest/dist
/usr/local/etc/nginx目錄下的nginx.conf,在server中添加以下: web
listen 80; #原爲8080,避免衝突,更改成80 server_name localhost; #charset koi8-r; #access_log logs/host.access.log main; location / { root /Users/xxx/ideaProjects/webtest/dist; index index.html; # 此處用於處理 Vue、Angular、React 使用H5 的 History時 重寫的問題 if (!-e $request_filename) { rewrite ^(.*) /index.html last; break; } } # 代理服務端接口 location /api/ { proxy_pass http://localhost:8080/;# 代理接口地址 }
前端發送請求:http://localhost/test ,vue-router將其重定向爲http://localhost/api/demo/1,實際訪問是http://localhost:8080/demo/1。vue-router
直接向後臺發送請求:訪問http://localhost/api/demo/1,實際訪問是:http://localhost:8080/demo/1npm