Skip to content

Instantly share code, notes, and snippets.

@jnaskali
Created March 8, 2012 10:29
Show Gist options
  • Save jnaskali/2000247 to your computer and use it in GitHub Desktop.
Save jnaskali/2000247 to your computer and use it in GitHub Desktop.
htaccess: Host domain in subdirectory
# IF newdomain AND not subdir THEN redirect to subdir
RewriteCond %{HTTP_HOST} ^(www\.)?domain\.com
RewriteCond %{REQUEST_URI} !^/domain
Rewriterule ^(.*)$ /domain/$1 [L]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment