[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

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