Serabass/serabass/master/.htaccess - Htaccess File

Serabass/serabass/master/.htaccess

# Justhost.com 
# .htaccess main domain to app redirect 
# Do not change this line. 
RewriteEngine on 
# Change serabass.loc to be your main domain. 
RewriteCond %{HTTP_HOST} ^(www.)?serabass.loc$ 
# Change 'app' to be the directory you will use for your main domain. 
RewriteCond %{REQUEST_URI} !^/app/ 
# Don't change the following two lines. 
RewriteCond %{REQUEST_FILENAME} !-f 
RewriteCond %{REQUEST_FILENAME} !-d 
# Change 'app' to be the directory you will use for your main domain. 
RewriteRule ^(.*)$ /app/$1 
# Change serabass.loc to be your main domain again. 
# Change 'app' to be the directory you will use for your main domain 
# followed by / then the main file for your site, index.php, index.html, etc. 
RewriteCond %{HTTP_HOST} ^(www.)?serabass.loc$ 
RewriteRule ^(/)?$ app/index.html [L]

On Github License

Files

Download PDF of Htaccess file
HTTP_HOST, REQUEST_FILENAME, REQUEST_URI

Comments

Apache