htaccess redirect based on IP?
I want to redirect all visitors to my website coming from aol to a special promotion page, targeted at AOL users. Anyone know how to do this in htaccess?
Here's what I have if I only wanted to deny access to aol:
<Limit GET>
order deny,allow
deny from .aol.com
allow from all
</Limit>
|