【NB】Nginx屏蔽或禁止指定来源网站访问
http://cdn.u1.huluxia.com/g4/M02/5F/10/rBAAdmLfpUqANHXuAAPDAiMkQ3I380.jpg
在nginx.conf的server配置项中加入
1.访问返回403
if ($http_referer ~* "xxx.com") {
return 403;
}
2.访问跳转指定网站
if ($http_referer ~* "xxx.com") {
rewrite ^/ http://www.xxx.com/;
}
3.禁止多域名
if ($http_referer ~* "xxx.com|aaa.com") {
rewrite ^/ http://www.xxx.com/;
}
#【NB】Vue中使用v-for给img中的src属性赋值#
#【NB】.MD语法入门#
页:
[1]