RewriteEngine on
RewriteCond %{HTTP_REFERER} !^http://plugin.yahoo.com/.*$ [NC] <-- Check to see if the referer is plugin.yahoo.com if it is, goto RewriteRule
RewriteRule [yahoo.com...] [R,L]
but it doesn't seem to work...any help, and then have it send them somewhere else like www.altavista.com if it isn't = to plugin.yahoo.com
Thanx in advance.
James
I'm doing drive-by bumps to what I feel are interesting questions in need of interesting answers. As a technical dunce I have no answer but I bet someone who sees this will.
RewriteEngine on
RewriteCond %{HTTP_REFERER} !^plugin.yahoo.com/.*$ [NC]
RewriteRule ^.*$ [altavista.com...]
should work... although I freely admit I'm no authority on mod_rewrite ;)