1
我在一個特定的文件夾中有一些靜態內容,jpg,png。iis 7.5 http響應頭不起作用
我很喜歡設置HTTP標頭在30天后過期。
使用IIS 7.5 >> HTTP響應頭>>設爲共用首>>過期的網頁內容
我加了我的價值,但我我仍然可以對靜態內容(expiration not specified)
HTTP頭。
我已經嘗試在IIS中刷新我的網站,但它沒有解決我的問題。
有什麼想法?
我在一個特定的文件夾中有一些靜態內容,jpg,png。iis 7.5 http響應頭不起作用
我很喜歡設置HTTP標頭在30天后過期。
使用IIS 7.5 >> HTTP響應頭>>設爲共用首>>過期的網頁內容
我加了我的價值,但我我仍然可以對靜態內容(expiration not specified)
HTTP頭。
我已經嘗試在IIS中刷新我的網站,但它沒有解決我的問題。
有什麼想法?
Give this a try with application pool -> ManagedpipelineMode : **Classic**
<system.webServer>
<staticContent>
<clientCache cacheControlMode="UseMaxAge" cacheControlMaxAge="365.00:00:00" cacheControlCustom="public"/>
</staticContent>
</system.webServer>
也可以檢查如何在UI http://www.iis.net/configreference/system.webserver/staticcontent/clientcache
[到期日期緩存的靜態內容(的
可能重複http://stackoverflow.com/questions/8311899/expiration-date-配置它對於緩存的靜態內容) – RickNZ