shieldsdesignstudio/healing-hands/master/.htaccess - Htaccess File

shieldsdesignstudio/healing-hands/master/.htaccess

Options -Indexes
    Options +FollowSymLinks
    RewriteEngine on
    # Redirect all user to without WWW
    RewriteCond %{HTTP_HOST} ^www.(.+)$ [NC]
    RewriteRule ^ http://%1%{REQUEST_URI} [L,R=301]
    # Serve Drupal 7 from sub directory in web root
    RewriteRule ^$ dev/index.php [L]
    RewriteCond %{DOCUMENT_ROOT}/dev%{REQUEST_URI} -f
    RewriteRule .* dev/$0 [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule .* dev/index.php?q=$0 [QSA]

On Github License

Files

Download PDF of Htaccess file
DOCUMENT_ROOT, HTTP_HOST, REQUEST_FILENAME, REQUEST_URI

Comments

Apache