Created
October 11, 2015 14:50
-
-
Save ajaegers/08d8379dfe7b3ac30548 to your computer and use it in GitHub Desktop.
Htaccess alias subdomain redirection in document root subfolder
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# SECTION BEGIN SubDomainOnFolder | |
RewriteEngine on | |
RewriteCond %{HTTP_HOST} ^(blog|preprod)\. | |
RewriteCond %{REQUEST_URI} !^/(blog|preprod)/ | |
RewriteCond %{DOCUMENT_ROOT}/%1 -d | |
RewriteRule ^(.*)$ %1/$1 [L] | |
# SECTION END SubDomainOnFolder |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment