Apache中利用mod_rewrite实现防盗链
程序员文章站
2022-04-09 10:17:40
前提apache中的mod_rewrite模块为激活状态,既然要消灭掉mp3文件的盗链就顺便也把图片盗链的设置给做了,下面是我在网站根目录的.htaccess文...
前提apache中的mod_rewrite模块为激活状态,既然要消灭掉mp3文件的盗链就顺便也把图片盗链的设置给做了,下面是我在网站根目录的.htaccess文件中的配置,供同病相怜之人参考:。
view plaincopy to clipboardprint?<ifmodule mod_rewrite.c> #开启mod_rewrite引擎 rewriteengine on #设置合法请求源
view plaincopy to clipboardprint?<ifmodule mod_rewrite.c> #开启mod_rewrite引擎 rewriteengine on #设置合法请求源
- <ifmodule mod_rewrite.c>
- #开启mod_rewrite引擎
- rewriteengine on
- #设置合法请求源
- rewritecond %{http_referer} !^$ [nc]
- rewritecond %{http_referer} !zhangzhang.net [nc]
- rewritecond %{http_referer} !google.com [nc]
- rewritecond %{http_referer} !baidu.com [nc]
- rewritecond %{http_referer} !yahoo.com [nc]
- rewritecond %{http_referer} !msn.com [nc]
- rewritecond %{http_referer} !bloglines.com [nc]
- rewritecond %{http_referer} !feedburner.com [nc]
- rewritecond %{http_referer} !feedsky.com [nc]
- #指向警告页面
- rewriterule .*\.(gif|jpg|png|mp3)$ outlink.gif [l,nc]
- </ifmodule>
上一篇: 钱算什么