I'm developing a website and I found that Internet Explorer tries to save the landing page instead of opening it (other browsers work fine). Here's the link:
I'm trying to improve site performance by manipulating .htaccess and HTTP headers and I think there's a conflict somewhere.
Other pages are working well:
Any ideas why IE behaves like that?
Thank you.
The page you are accessing probably has a
Content-Type
header tellingIE
it's something other than a webpage. So it tries to save it somewhere since it doesn't know how to render.Here's the output when you use curl:
If you look at the final line it says:
Content-Type: charset=utf-8
. Try setting the content type header to something likeContent-Type: text/html; charset=UTF-8
.