在server段中添加紅框內(nèi)的圖片跨域內(nèi)容
location ~* .*\.(gif|jpg|jpeg|png|bmp|swf)$ {
add_header Access-Control-Allow-Origin *;
add_header Access-Control-Allow-Headers X-Requested-With;
add_header Access-Control-Allow-Methods GET,POST,PUT,DELETE,OPTIONS;
if ($request_method = 'OPTIONS') {
return 204;
}
expires 30d;
}
拓展
這種的就是圖片文件都支持跨域,將要跨域的在location匹配就行。
以上就是“nginx如何配置才能支持圖片跨域訪問(wèn)”的詳細(xì)內(nèi)容,更多請(qǐng)關(guān)注木子天禾科技其它相關(guān)文章!