On Sun, Mar 18, 2012 at 11:16 PM, Eric Covener <covener@xxxxxxxxx> wrote:
The P flag is explicitly used to proxy. If you want to redirect,substitute a full URL and use the R flag instead.
I need to dynamically change DocumentRoot for some subdomains pointing to the same local path.
This rule works (almost) as expected, but has an issue with links to subfolders without trailing slash:
RewriteCond %{HTTP_HOST} ^foo\.domain\.com$RewriteRule .* /foo%{REQUEST_URI} [QSA,L]
RewriteCond %{ENV:REDIRECT_STATUS} ^$
That is
http://foo.domain.com/bar/ works, while
http://foo.domain.com/bar is redirected to a wrong local path (/foo/foo/bar instead of /foo/bar)