nginx處理靜態資源

2021-10-01 11:22:27 字數 626 閱讀 4476

前後端分離後,把前端頁面放入nginx中,在nginx配置如下:

location /vue/office/
正確的配置:

//root配置

//alias配置

location /images/

錯誤的配置:

//root配置

//alias配置

location /images/

root配置 root後面位址+location 後面位址

alias配置 就是root配置的位址

alias配置最後一定要 「/」 結尾 root配置隨意

nginx配置靜態資源

http請求 server location project1 error page 500 502 503 504 50x.html location 50x.html 此時訪問www.test.com 進入location 訪問www.test.com project1 進入location p...

SpringMVC 處理靜態資源

springmvc 處理靜態資源 1.為甚麼會有這樣的問題 優雅的 rest 風格的資源url 不希望帶 html 或 do 等字尾 若將 dispatcherservlet 請求對映配置為 則springmvc 將捕獲web 容器的所有請求,包括靜態資源的請求,springmvc 會將他們當成乙個...

Spring MVC 靜態資源處理

spring mvc 靜態資源處理 web.xml中dispatcherservlet的配置如下 springmvcservlet name org.springframework.web.servlet.dispatcherservletservlet class contextconfigloc...