NewtownGuy
Technical User
Hello,
I'm running Apache 2 on Fedora Core 2 and 3. Maybe it's not configured right because I keep getting error messages when I try to implicitly access index.html. I have set the listen port to 8000 to avoid conflicts with other HTTP servers on the network.
When I try to launch IE6 and FF2 using this line:
The browsers will not automatically open my index.html.
In IE I get this message:
File Download.
Do you want to save this file ?
Type: Unknown File type, <size of it>
In FF I get this message:
Opening
You have chosen to open
<blank line>
which is a: text/x-server-parsed-html
from
Here's the opening of my index.html file:
In IE, if I put this:
...into the URL line, the file opens fine. However, this same approach will not open the file in FF.
How can I code my index.html file so these browsers will automatically open it ? Or, is there anything I need to change in the setup of my Apache 2 HTTP server ?
Thank you.
I'm running Apache 2 on Fedora Core 2 and 3. Maybe it's not configured right because I keep getting error messages when I try to implicitly access index.html. I have set the listen port to 8000 to avoid conflicts with other HTTP servers on the network.
When I try to launch IE6 and FF2 using this line:
Code:
[URL unfurl="true"]http://192.168.192.94:8000[/URL]
The browsers will not automatically open my index.html.
In IE I get this message:
File Download.
Do you want to save this file ?
Type: Unknown File type, <size of it>
In FF I get this message:
Opening
You have chosen to open
<blank line>
which is a: text/x-server-parsed-html
from
Here's the opening of my index.html file:
Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.1//EN" "[URL unfurl="true"]http://www.w3.org/TR/html4/strict.dtd">[/URL]
<html>
<head>
<META http-equiv="Content-Type" content="text/html; charset=ISO-8859-5">
<title>TITLE</title> </head>
In IE, if I put this:
Code:
[URL unfurl="true"]http://192.168.192.94:8000/index.html[/URL]
...into the URL line, the file opens fine. However, this same approach will not open the file in FF.
How can I code my index.html file so these browsers will automatically open it ? Or, is there anything I need to change in the setup of my Apache 2 HTTP server ?
Thank you.