As we know IE/FF is very much different from one another.. so different landing pages are necessary for each one. I've searched the all over google and have found this php redirect....
--------------------------
<?
if ($name = strstr ($HTTP_USER_AGENT, "MSIE")) {
Header ("Location: hxxp://www.msn.com/");
} else {
Header ("Location: hxxp://www.google.com/");
}
?>
-------------------------
However, when i tried this on both my browser it sent me to google. IS MSIE not seen as the new version or something?
--------------------------
<?
if ($name = strstr ($HTTP_USER_AGENT, "MSIE")) {
Header ("Location: hxxp://www.msn.com/");
} else {
Header ("Location: hxxp://www.google.com/");
}
?>
-------------------------
However, when i tried this on both my browser it sent me to google. IS MSIE not seen as the new version or something?