darrylivan/ericavhay.com/master/.htaccess - Htaccess File

darrylivan/ericavhay.com/master/.htaccess

RewriteEngine on

# if a directory or a file exists, use it directly
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d

# otherwise forward it to app directory
RewriteCond . app/index.html

RewriteCond %{HTTP_HOST} ^(www.)?test.ericavhay.com$ [NC]
RewriteRule !^app/ /app%{REQUEST_URI} [L,NC]

RewriteCond %{HTTP_HOST} ^test.ericavhay.com$
RewriteRule (.*) http://www.test.ericavhay.com/$1 [R=301,L]
RewriteRule ^$ app [L]

On Github License

Files

Download PDF of Htaccess file
HTTP_HOST, REQUEST_FILENAME, REQUEST_URI

Comments

Apache