apache rewrite 技术实现防盗链功能
程序员文章站
2022-05-31 08:43:32
...
apache rewrite 技术实现防盗链功能
原文地址:http://www.jb100.net/html/content-36-419-1.html
apache 防盗链的第一种实现方法,可以用 rewrite 实现。首先要确认 apache 的 rewrite module 可用:能够控制 apache httpd.conf 文件的,打开 httpd.conf,确保有这么一行配置:
loadmodule rewrite_module modules/mod_rewrite.so
在找到自己网站对应的 配置的地方,加入下列代码:
原文地址:http://www.jb100.net/html/content-36-419-1.html
apache 防盗链的第一种实现方法,可以用 rewrite 实现。首先要确认 apache 的 rewrite module 可用:能够控制 apache httpd.conf 文件的,打开 httpd.conf,确保有这么一行配置:
loadmodule rewrite_module modules/mod_rewrite.so
在找到自己网站对应的 配置的地方,加入下列代码:
servername jb100.net
# 防盗链配置
rewriteengine on
rewritecond %{http_referer} !^http://jb100.net/.*$ [nc]
rewritecond %{http_referer} !^http://jb100.net$ [nc]
rewritecond %{http_referer} !^http://www.jb100.net/.*$ [nc]
rewritecond %{http_referer} !^http://www.jb100.net$ [nc]
rewriterule .*.(gif|jpg|swf)$ http://www.jb100.net/about/nolink.png [r,nc]
原文地址:http://www.jb100.net/html/content-36-419-1.html AD:真正免费,域名+虚机+企业邮箱=0元
上一篇: php 项目为什么在服务器下不能获取远程网页的内容
下一篇: php发送带附件的邮件_PHP教程