My programmer is on vacation so I need your help! I discovered a page that has a bug for IE users. I want to redirect all IE users to a different page.
How can I d
Server-side solution using PHP that's guaranteed to work on all browsers:
if ( preg_match("/MSIE/",$_SERVER['HTTP_USER_AGENT']) ) header("Location: indexIE.html"); else header("Location: indexNonIE.html"); exit; ?>