View Single Post
Old 05-19-2001, 02:48 PM  
TFCash
Confirmed User
 
Industry Role:
Join Date: Apr 2001
Posts: 1,738
you can do this with php pretty easily. Something like this:

<?php
ereg("\.([a-z]+)$", $country, $regs);
switch ($regs[1]) {
case "uk": header("Location: http://....uk site"); break;
case "es": header("Location: http://...spain site"); break;
default: header("Location: http://...default site");
}
?>


Tim
TFCash is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote