htaccess文件小记

阅读更多

RewriteEngine On

RewriteCond %{HTTP_REFERER} !^ http://your-web-site/.*%     [NC]

RewriteCond %{HTTP_REFERER} !^ http://your-web-site$     [NC]

RewriteRule .*\.(mp3|jpg|jpeg|gif|wma)$  http://your-web-site/error.html    [R,NC]

 

以上设置的效果是:

允许上边的URL来访问(mp3|jpg|jpeg|gif|wma)这些资源,通过不是上面列表的网址的途径访问,

则转发到 http://your-web-site/error.html 这个错误页面。

 

这个htaccess文件还有很多可以研究的地方。

小计一番。

 

你可能感兴趣的:(apache,htaccess,配置)