I want to know if I can send two different ip's to two different places, using the "order/deny" thing in htaccess.
I'm trying and reading now for a couple of hours and still no luck...
This works, but the other one not
Code: Select all
ErrorDocument 403 http://www.altavista.com/
<Limit GET HEAD POST>
order allow,deny
deny from 11.111.111.111
allow from all
</LIMIT>Code: Select all
ErrorDocument 403 http://www.altavista.com/
<Limit GET HEAD POST>
order allow,deny
deny from 11.111.111.111
allow from all
</LIMIT>
ErrorDocument 403 http://www.yahoo.com/
<Limit GET HEAD POST>
order allow,deny
deny from 22.222.222.222
allow from all
</LIMIT>