| haunted_i on Apr 19, 2007 at 7:33:36 AM Try Javascript... it works with all browsers. If non-IE browsers don't support conditionals, they'll see everything. :P
<script language="javascript">
<SCRIPT> if (navigator.userAgent.indexOf('MSIE') != 1) window.location = "http://www.google.com/" ; </SCRIPT>
Basically, if user's browser is not some version of IE, redirect to Google, or (hopefully) a page explaining why you have the browser distinction.
|