Skip to content

Instantly share code, notes, and snippets.

@rxnlabs
Created June 18, 2014 14:18
Show Gist options
  • Save rxnlabs/ba6c1dc1c5c443d90eb0 to your computer and use it in GitHub Desktop.
Save rxnlabs/ba6c1dc1c5c443d90eb0 to your computer and use it in GitHub Desktop.
htaccess - change site root to subfolder. Useful if you're on host (using cPanel) and you want to move your main site to a folder.
RewriteEngine on
RewriteCond %{HTTP_HOST} ^(www.)?mydomain.com$ [NC]
RewriteCond %{REQUEST_URI} !^/mydomain.com/public/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /mydomain.com/public/index.php
RewriteCond %{HTTP_HOST} ^(www.)?mydomain.com$ [NC]
RewriteRule ^(/)?$ mydomain.com/public/index.php [L]
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(/)?$ mydomain.com/public/index.php [L]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment