Created
June 8, 2015 04:07
-
-
Save caasig/80365989368b5b8fe12c to your computer and use it in GitHub Desktop.
.htaccess for bedrock on shared hosting
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
# @source http://www.mzoo.org/use-bedrock-on-shared-server/ | |
# | |
# @usage Replace %host% with your domain. | |
# If your root is a subdirectory, append all instances of web/ with your subdirectory path. | |
# i.e. change /web/ to /path/to/dir/web/ | |
<IfModule mod_rewrite.c> | |
Options -Indexes | |
# .htaccess primary domain to web redirect | |
# this file must be in the (public_html | web ) folder of your hosting account | |
# make the changes to the file according to the instructions. | |
# Do not change this line. | |
RewriteEngine on | |
# Change %host% to be your primary domain. | |
RewriteCond %{HTTP_HOST} ^(www.)?%host%$ | |
# Change 'web' to be the folder you will use for your primary domain. | |
RewriteCond %{REQUEST_URI} !^/web/ | |
#******************** | |
# NOT RRCOMMENDED * | |
#******************** | |
# | |
# Uncomment those two lines if you want dirs and files to be accessible out of the | |
# your primary domain dir. | |
#RewriteCond %{REQUEST_FILENAME} !-f | |
#RewriteCond %{REQUEST_FILENAME} !-d | |
# Change 'web' to be the folder you will use for your primary domain. | |
RewriteRule ^(.*)$ /web/$1 | |
# Change %host% to be your primary domain again. | |
# Change 'web' to be the folder you will use for your primary domain | |
# followed by / then the main file for your site, index.php, index.html, etc. | |
RewriteCond %{HTTP_HOST} ^(www.)?%host%$ | |
RewriteRule ^(/)?$ web/index.php [L] | |
</IfModule> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment