At 00:13 2001-09-20 GMT, you wrote:
My website (http://www.dksy.net) is hosted at a site to which I do not have access except to redirect to a Redhat 7 server in my office : <META HTTP-EQUIV="refresh" CONTENT="0; URL=http://00-20-78-D5-A9-C8.bconnected.net:8080/dksy-portal">
When (http://www.dksy.net) is entered in a browser, (http://00-20-78-d5-a9-c8.bconnected.net:8080/dksy-portal) is displayed. Is it possible to maintain the original domain in a browser or would this confuse the browser? Is it possible to configure Zope alone to display the domain name?
Any suggestions would be greatly appreciated David
Why don't you do something like this instead: index.html on http://www.dksy.net ----------- <HTML> <HEAD> <title>frame example</title> </HEAD> <frameset rows="100%,*" border="0" frameborder="0" framespacing="0" framecolor="#000000"> <frame src="http://00-20-78-d5-a9-c8.bconnected.net:8080/dksy-portal" name="hello" > <!--this won't be shown --> <frame src="http://www.microsoft.com/please-fix-IIS-nimda-is-shitting-me"> <!--this won't be shown --> </frameset> <noframes> <body> If your browser supported frames this page would look really cool! </body> </noframes> </HTML> ------------------------------ Cheers, David.