apache服务器配置防盗链(centos7)
Posted xwlong
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了apache服务器配置防盗链(centos7)相关的知识,希望对你有一定的参考价值。
<Directory /data/wwwroot/xwl.com>
SetEnvIfNoCase Referer "^$" local_ref
SetEnvIfNoCase Referer "www.xwl.com/.*$" local_ref
SetEnvIfNoCase Referer "xwl.com/.*$" local_ref
<filesmatch "\.(|txt|doc|mp3|mp4|zip|rar|jpg|gif)">
//apache2.4以下
Order Allow,Deny
Allow from env=local_ref
//apache2.4以上
Require all denied
Require env local_ref
</filesmatch>
</Directory>
以上是关于apache服务器配置防盗链(centos7)的主要内容,如果未能解决你的问题,请参考以下文章