[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [cobalt-users] apache and redirects
- Subject: Re: [cobalt-users] apache and redirects
- From: "Kevin D" <kdlists@xxxxxxxxxxxxxxx>
- Date: Sat Dec 9 07:42:02 2000
- List-id: Mailing list for users to share thoughts on Cobalt products. <cobalt-users.list.cobalt.com>
I think this is the only way to do it Brian... that's the way the customer's
old hosting co did it...
Kevin
----- Original Message -----
From: "Brian Curtis" <admin@xxxxxxxxxxx>
To: <cobalt-users@xxxxxxxxxxxxxxx>
Sent: Friday, December 08, 2000 8:21 PM
Subject: Re: [cobalt-users] apache and redirects
> > Hi,
> >
> > I have a customer who hosts a domain with us on a raq3i. We do a
redirect
> so
> > that when someone types in www.domain.com the browser is directed to
> another
> > web server with the actual site. As of right now, we use the apache
> redirect
> > command, and when the browser is redirected, the url shows
> > http://www.someOtherSite.com/stuff/page.html
> >
> > We want it to stay www.domain.com even after the redirect. Is this
> possible?
> > How?
> >
> > Thanks,
> > Kevin
>
>
> The only *easy* way would be a frame-based layout:
>
> <HTML>
> <HEAD>
> <TITLE>Customer's Website</TITLE>
> </HEAD>
>
> <FRAMESET COLS="100%,*">
> <FRAME NAME="content" SRC="http://www.someOtherSite.com/stuff/page.html"
> MARGINWIDTH="0" MARGINHEIGHT="0" SCROLLING="auto" FRAMEBORDER="0">
> </FRAMESET>
>
> <BODY>
> You need a frames-capable browser to view this site.
> </BODY>
>
> </HTML>
>
>
> And make sure your client doesn't have any [TARGET="_top"]s within his <A
> HREF="">s
>
> --
> Brian Curtis
>
> _______________________________________________
> cobalt-users mailing list
> cobalt-users@xxxxxxxxxxxxxxx
> To Subscribe or Unsubscribe, please go to:
> http://list.cobalt.com/mailman/listinfo/cobalt-users
>