wordpress 图片防盗链设置
这个问题有一段时间了,试了网上很多办法,无奈都没有生效,描述:
centos + apache + nginx(反代)
装的面板是vestacp,我该怎么修改.htaccess呢?
centos + apache + nginx(反代)
装的面板是vestacp,我该怎么修改.htaccess呢?
共以下 1 个回答:
<Files ~ "^.(htaccess|htpasswd)$">
deny from all
</Files>
order deny,allow
RewriteEngine on
RewriteCond %{HTTP_REFERER} !^$
RewriteCond %{HTTP_REFERER} !^http://(www\.)?baidu.com(/)?.*$ [NC]
RewriteCond %{HTTP_REFERER} !^http://(www\.)?google.com(/)?.*$ [NC]
RewriteCond %{HTTP_REFERER} !^http://(www\.)?domain.com(/)?.*$ [NC]
RewriteRule .*\.(gif|jpg|jpeg|bmp|png)$ http://www.xxx.com/photo.jpg[R,NC,L]
将代码复制后,粘贴到写字板,命名为.htaccess文件。一般本地是不支持这种文件名称的,那么可以通过FTP上传到网站的根目录后,再将文件命名为.htaccess。
记得将其中的案例网址替换成你自己的网站。