View Single Post
(#1 (permalink))
Old
ZuraX ZuraX is offline
Registered User
ZuraX is on a distinguished road
 
Posts: 7
Join Date: Jun 2004
Location: Washington, Pa USA
RewriteEngine help needed please? - 07-26-2004, 09:30 AM

Can anyone help me out? I need to block 2 sites from sending me traffic....

This works...
RewriteEngine On
RewriteCond %{HTTP_REFERER} ^http://www.abc.com/.*$ [NC]
ReWriteRule .* http://www.zurax.com/portal2.php [R,L]


This doesnt...
RewriteEngine On
RewriteCond %{HTTP_REFERER} ^http://www.abc.com/.*$ [NC] [OR]
RewriteCond %{HTTP_REFERER} ^http://www.123.com/.*$ [NC]
ReWriteRule .* http://www.zurax.com/portal2.php [R,L]

Nor this...
RewriteEngine On
RewriteCond %{HTTP_REFERER} ^http://www.abc.com/.*$ [NC]
RewriteCond %{HTTP_REFERER} ^http://www.123.com/.*$ [NC]
ReWriteRule .* http://www.zurax.com/portal2.php [R,L]
Reply With Quote