Re: [EMAIL PROTECTED] single webpage redirect

2007-05-07 Thread Dave Henderson
That makes sense. Anyhow, I took your advice from the previous post and once again I would like to thank you for your help, all it working just as I asked. Dave Joshua Slive [EMAIL PROTECTED] wrote: On 5/6/07, Dave Henderson wrote: You were right, that worked like a charm! Why

Re: [EMAIL PROTECTED] single webpage redirect

2007-05-06 Thread Dave Henderson
Thanks Joshua and The Gaijin. I ended up using Joshua's suggestion (I also had to modify my dns settings), but it worked beautifully. Thanks again! Dave Joshua Slive [EMAIL PROTECTED] wrote: On 5/5/07, The Gaijin wrote: RewriteEngine On RewriteRule /login.html

Re: [EMAIL PROTECTED] single webpage redirect

2007-05-06 Thread Dave Henderson
Guys, I have another question. This one is just to maintain uniformity and is not a must. I adjusted the apache server that doesn't contain the user database (site2) to use the database at site1 by redirecting the login.html to login.server.com. This is working just fine when people

Re: [EMAIL PROTECTED] single webpage redirect

2007-05-06 Thread Joshua Slive
On 5/6/07, Dave Henderson [EMAIL PROTECTED] wrote: Guys, I have another question. This one is just to maintain uniformity and is not a must. I adjusted the apache server that doesn't contain the user database (site2) to use the database at site1 by redirecting the login.html to

Re: [EMAIL PROTECTED] single webpage redirect

2007-05-06 Thread Joshua Slive
On 5/6/07, Dave Henderson [EMAIL PROTECTED] wrote: The site2 is working fine and redirecting correctly. It is site1 that contains the userdata that I would like to redirect. Just flip site2 and site1 in my description. I did try to use the redirect statement on the site1 server, but

Re: [EMAIL PROTECTED] single webpage redirect

2007-05-06 Thread Dave Henderson
On 5/6/07, Dave Henderson wrote: The site2 is working fine and redirecting correctly. It is site1 that contains the userdata that I would like to redirect. Just flip site2 and site1 in my description. I did try to use the redirect statement on the site1 server, but that didn't work.

[EMAIL PROTECTED] single webpage redirect

2007-05-05 Thread Dave Henderson
Gang, I am trying to perform a redirect to another server when accessing a single webpage. Currently there are two sites connected over a WAN that both have Apache running to serve content. However, just one of these locations contains user database information (for logging into the

Re: [EMAIL PROTECTED] single webpage redirect

2007-05-05 Thread The Gaijin
On Sat, 2007-05-05 at 14:52 -0700, Dave Henderson wrote: Gang, I am trying to perform a redirect to another server when accessing a single webpage. Currently there are two sites connected over a WAN that both have Apache running to serve content. However, just one of these locations

Re: [EMAIL PROTECTED] single webpage redirect

2007-05-05 Thread Dave Henderson
Thank Gaigin. I will do some more research. The Gaijin [EMAIL PROTECTED] wrote: On Sat, 2007-05-05 at 14:52 -0700, Dave Henderson wrote: Gang, I am trying to perform a redirect to another server when accessing a single webpage. Currently there are two sites connected over a WAN that

Re: [EMAIL PROTECTED] single webpage redirect

2007-05-05 Thread Joshua Slive
On 5/5/07, The Gaijin [EMAIL PROTECTED] wrote: RewriteEngine On RewriteRule /login.html http://other.server.domain/login_url [R] This case can be replaced simply with Redirect /login.html http://other.server.domain/login_url which doesn't require mod_rewrite. Joshua.