Sorry, if this is in FAQ, but...
I was thinking about small redirection script based on REMOTE_ADDR
<?
$visitor = @gethostbyaddr($REMOTE_ADDR);
now $visitor is a string, right? What I want to do is to redirect people who have *.ee in the end of their name to one site (say URL1) and everyone else to URL2. How to do? Is it reasonable at all?
Kristjan