nginx遮蔽特定http_referer的請求

翟雨佳blogs發表於2020-12-23

 

在nginx.conf的server配置項中加入

 

if ($http_referer ~* "www.xxx.com") {
    return 403;
}

相關文章