.htaccess i need to block traffic from one site , can anyone please tell me what i need to add in my .htaccess please. Thanks
Not sure if it blocks the traffic from web site but you can try follow code in your .htaccess file: deny from site_ip_address Kailash
You will get the site ip from ping. Just ping to that domain in command prompt. ping websitename.com Also you can obtain A record from dnsstuff.com Kailash
it sounds to me like you want to block traffic REFERRED by a particular site? if so, something like this might help: RewriteCond %{HTTP_REFERER} nastysite\.com [NC] RewriteRule .* - [F] Code (markup):