Looks like he can not change the page with the META tag because he has no access to the page. Andreas ----- Original Message ----- From: "David Lutz" <david@jadescape.com> To: "David Kennedy" <dkennedy@acm.org>; <zope@zope.org> Sent: Wednesday, September 19, 2001 20:55 Subject: Re: [Zope] Display domain name in browser 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. _______________________________________________ Zope maillist - Zope@zope.org http://lists.zope.org/mailman/listinfo/zope ** No cross posts or HTML encoding! ** (Related lists - http://lists.zope.org/mailman/listinfo/zope-announce http://lists.zope.org/mailman/listinfo/zope-dev )