PDA

View Full Version : .htaccess I need help


Palleib
05-26-2001, 12:28 PM
I need to redirect traffic to one of my galleries that I donīt want eating my bandwith its only traffic from one url like
http://www.ihate.com/this/fucker.html
or
http://www.ihate.com
Both will do.
Thanks in advance.

shane
05-26-2001, 01:21 PM
maby some javascript will do
<script>
if (document.referrer.indexOf('someone.net') > -1)
location.href = 'http://cjsite.com';
</script>

andy2000
05-26-2001, 02:18 PM
try this

AddType text/x-server-parsed-html .html
Options FollowSymLinks Indexes ExecCGI Includes
RewriteEngine on
RewriteOptions inherit
RewriteCond %{HTTP_REFERER} ihate.com
RewriteRule /* http://www.REDIRECTHERE.COM