[thelist] URL Rewrite Between Two Doamins

partyarmy partyarmy at gmail.com
Mon Jun 20 10:50:50 CDT 2005


you also may need to look at your php.ini for a line allowing you to
use sessions across a couple defined domains. that way both
domaina.com and domainb.com have access to the same session info.

On 6/20/05, Ron Dorman <rwd at csi1st.net> wrote:
> Maximillian Schwanekamp wrote:
> 
> >Ron Dorman wrote:
> >
> >
> >>I have a Linux/Apache/php/MySQL platform.
> >>I need to have *domainB.com* be able to run *app.domainA.com* and look
> >>like it is running *app.domainB.com* in the address bar and all other
> >>references to the browser window/object.
> >>
> >>
> >
> >Do you have access to httpd.conf?  If so, you can have app.domainB.com's
> >DocumentRoot set to the same as app.domainA.com.  e.g.:
> ><VirtualHost 192.168.1.1>
> >ServerName app.domainb.com
> >ServerAdmin admin at domainb.com
> >DocumentRoot /home/domaina/public_html/app
> >User domaina
> >Group domaina
> ></VirtualHost>
> >
> >That is, for app.domainb.com which resolves to 192.168.1.1, set
> >DocumentRoot to domaina/public_html/app (i.e. domainA.com/app), and run
> >with the credentials of user domaina.  This is assuming you already have
> >things set up for app.domaina.com and have DNS already configured for
> >app.domainb.com to resolve correctly. You might also want to set the
> >ErrorLog directive too!  Don't forget to restart or reload Apache when
> >you make the change.
> >
> >Maybe someone else will have a more elegant solution, but this ought to
> >do what you're after...if you have access to httpd.conf.
> >
> >If *not*, we'll probably need some more info.  My question in this case
> >is whether domainA and domainB are running under different user/groups?
> > If domainB has read/execute permissions on domainA's /app directory, a
> >mod_rewrite solution could work.
> >
> I do have access to httpd.conf. The two domains, A & B, are under
> seperate users/groups at this time, can change if needed. I hadn't
> thought of using httpd.conf and will give it a good test.
> 
> Thanks,
> Ron D.
> --
> 
> * * Please support the community that supports you.  * *
> http://evolt.org/help_support_evolt/
> 
> For unsubscribe and other options, including the Tip Harvester
> and archives of thelist go to: http://lists.evolt.org
> Workers of the Web, evolt !
>


More information about the thelist mailing list