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