防止别人网站大量引用自己网站内的资源进入apache虚拟主机配置文件 vim /usr/local/apache2/conf/extra/httpd-vhosts.conf
添加此内容
SetEnvIfNoCase Referer "^http://.*\.aminglinux\.com" local_ref -->此网站加入白名单如果其他网站引用了本站限制的内容则无法显示。
SetEnvIfNoCase Referer ".*\.test\.net" local_ref -->此网站加入白名单
-->()中为限制的内容格式
Order Allow,Deny
Allow from env=local_ref
/usr/local/apache2/bin/apachectl -t
/usr/local/apache2/bin/apachectl restart
在进行网站内测试即可。
添加此内容
SetEnvIfNoCase Referer "^http://.*\.aminglinux\.com" local_ref -->此网站加入白名单如果其他网站引用了本站限制的内容则无法显示。
SetEnvIfNoCase Referer ".*\.test\.net" local_ref -->此网站加入白名单
-->()中为限制的内容格式
Order Allow,Deny
Allow from env=local_ref
/usr/local/apache2/bin/apachectl -t
/usr/local/apache2/bin/apachectl restart
在进行网站内测试即可。
编辑回复