Reputation: 41
I have a little problem with IExplorer. The problem is that in the home of the website (lets suppose it is www.example.com) I have a little index.html file that contains the following code:
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="refresh" content="0; url=http://www.example.com/myredrection/" />
</head>
</html>
The problem is that while Firefox and Chrome automatically load the index.html file and get redirected to the right folder (myredirection in the example), IExplorer is not doing this. It does not automatically open the index.html when I point it to example.com, thus reporting a "Page can't be displayed" error.
Am I missing something?
Upvotes: 0
Views: 966
Reputation: 11
I had similar case. Issue was caused by empty (or missed) Content-Type header in the server response. looks like IE relies on that header to render and show the response. So, suggestion is to check web server config to make sure it is able to fill Content-Type. In case of Apache HTTPD start point to check: mime.type
Upvotes: 1