Hi,
I have an rails app which redirects wrong urls to "/". I made 404.html file and it has the following code.
<script type="text/javascript">
<!--
window.location = "http://www.mydomain.com/"
//-->
</script>
It works well in Firefox but IE doesn't redirect. IE draws its own "The webpage cannot be found." page.
I checked log file and it surely rendered 404.html.
This happens regardless of IE versions.
What's wrong?
Sam