Drop Down MenusCSS Drop Down MenuPure CSS Dropdown Menu

Wednesday, September 19, 2012

Block Unwanted Referrers - .htaccess

If we want to block some unwanted referrers then we can achieve it with small bit of .htaccess code and mod_rewrite.

   RewriteEngine on
   RewriteCond %{HTTP_REFERER} digg.com [NC]
   RewriteRule .* - [F]

No comments:

Post a Comment