RE: [users@httpd] Redirect subdirectory to another virtualhost on Apache??

2012-10-31 Thread Anthony J. Biacco
Does app_test = galaxy_qa in this example?? If it does, the error doesn’t make much sense in your problem as a Redirect only requires the mod_alias module to be enabled. But if galaxy_qa != app_test then you got a problem somewhere else where you’re trying to do a ProxyPass/ProxyPassReverse

Re: [users@httpd] Redirect subdirectory to another virtualhost on Apache??

2012-10-31 Thread Derrick Lin
Hi Tony, I did have some ProxyPass/ProxyPassReverse settings in the global content and required proxy modules are enabled. At the end I solve it by using rewrite rule inside the old virtualhost: RewriteRule ^/app_test(/.*)?$ http://app_prod.example.com [R] It is working fine now. For the

Re: [users@httpd]

2012-10-31 Thread Kevin A. McGrail
On 11/1/2012 12:59 AM, ABHISHEK GUPTA wrote: I want to configure apache in a way that all the request from mobile browsers are redirected to a separate virtualhost and requests from desktop browsers are served from another virtualhost. Abhishek, Because I recommend that the mobile site have

Re: [users@httpd]

2012-10-31 Thread ABHISHEK GUPTA
Thanks, Kevin. On Thu, Nov 1, 2012 at 10:42 AM, Kevin A. McGrail kmcgr...@pccc.com wrote: On 11/1/2012 12:59 AM, ABHISHEK GUPTA wrote: I want to configure apache in a way that all the request from mobile browsers are redirected to a separate virtualhost and requests from desktop browsers