Forum Moderators: travelin cat
My site uses redirects fairly heavily. I was surprised to see that Internet Explorer 5.2 for the Mac simply won't redirect. When a visitor hits a page it just sits there even though the redirect is set to 0 seconds. Sometimes the redirect will deploy after a few seconds, sometimes on the second or third click. Does anyone know of any workarounds for this? As it stands I am losing all of my Mac visitors using IE, which is about 4% of my traffic. Thanks
Jim
change the url to example.com and show us what you are using
you should also backup the meta redirect with a javascript redirect which will happen instantly
<script type="text/javascript">
window.location.replace('http://example.com/blah/')
</script>
Implementing a correct, site-wide solution that makes your dynamic page URLs look like they're static might be a bit of work, but it will prevent you from having to have a bunch of "point fixes" for all these "side-effect" problems.
Jim
Thanks for the response...Here is the meta refresh code I am using. IE 5 for the mac is the only browser that has probs with it. Would I put the javascript on the same page along with this code?
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="refresh" content="0;URL=http://mysite.com/Qstore/Qstore.cgi?CMD=008&DEPT=1021236984&CAT=1060144925">
</head>
<body bgcolor="#000000">
</body>
</html>