When I saved my file with IE 6.0 my relative links have a problem. The editor sets the host before it.
Such as:
<a href="contact.html">
change in:
<a href="http://localhost/contact.html">
but the file isn't in the root so the link isn't correct after a save...
Can anybody help me?
Tue, 05/27/2003 - 01:33
#1
RE: IE 6 links not correct problem
This is an MSHTML thing. The editor uses an object which generally comes with the operating system, that is what generates the HTML. The editor is basically a fully functional front end to the object. However you cannot turn off the absolute path thing. The simpler thing would be to have a search and replace on your server end and remove the http://localhost.
John