Skip to content

Instantly share code, notes, and snippets.

@bostondv
Last active August 29, 2015 14:03
Show Gist options
  • Save bostondv/ad8ab2c4eb782de022cc to your computer and use it in GitHub Desktop.
Save bostondv/ad8ab2c4eb782de022cc to your computer and use it in GitHub Desktop.
.htaccess main domain to subdirectory redirect
# .htaccess main domain to subdirectory redirect
RewriteEngine on
RewriteCond %{HTTP_HOST} ^(www.)?domain.com$
RewriteCond %{REQUEST_URI} !^/web/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /web/$1
RewriteCond %{HTTP_HOST} ^(www.)?domain.com$
RewriteRule ^(/)?$ web/index.php [L]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment