Created
June 18, 2014 14:18
-
-
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.
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
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