vote up 0 vote down star

My website is working fine on IE, but when I open it on Firefox, Firefox asks to download the same page and opens the Download File dialog. This problem occurs sometimes in Safari also.

For example, if I type in the URL as:

http://www.example.com/news.html

Firefox opens a dialog to download "news.html". Whereas, it works fine in IE. Why?

flag

3  
I rather strongly suspect that you don't run abc.com. If you want to use an example domain, then use example.com (that's what it is there fore). Better yet, provide a real URL so we can see what your server is outputting. – David Dorward Nov 3 at 11:38
1  
@David: I am extremely sorry. Editing it. – RPK Nov 3 at 11:41
That also is not working. – adamantium Nov 3 at 11:42
What HTTP headers does the server send? – ndim Nov 3 at 11:42

3 Answers

vote up 2 vote down

As some other answers suggest, this has to do with the Content-Type being sent. Using the addon Live HTTP Headers, you will be able to check which are sent. It should be text/html.

link|flag
vote up 2 vote down

Does your web.xml define mime types like the following?

<mime-mapping>
	<extension>.html</extension>
	<mime-type>text/html</mime-type>
</mime-mapping>
link|flag
@rsp: Where is this file located? – RPK Nov 3 at 11:53
For web applications this file is located in the WEB-INF directory relative to the web-app. Most application servers or HTTP servers have a global configuration facility to specify the mime types for files served from the filesystem. (Btw, if you use IIS you could try if using .htm does wirk as expected.) – rsp Nov 3 at 12:14
vote up 4 vote down

This appears to be a problem with the MIME type being sent by your server in the HTTP header. If you are using PHP, check for any header() calls being sent before the page is echoed.

Also, try sending an explicit HTTP header like this:

<?php
header ("content-type:text/html");

.... HTML / BODY / echo starts here
....
?>
link|flag
@Crimson: But it is a pure HTML page. – RPK Nov 3 at 11:51
Can you give us a link to your actual site? Further, please ensure that the file extension is .html – Crimson Nov 4 at 5:59

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.