p6/bizsensebms/master/public_html/.htaccess - Htaccess File

p6/bizsensebms/master/public_html/.htaccess

#If a file exists in the requested URI it will be served
# Otherwise the request will be rounted to index.php
# We also set the environment varaiable value - development
# In production the application environment will be set to 'production'
# In development the application environment will be set to 'development'

SetEnv APPLICATION_ENV development
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} -s [OR]
RewriteCond %{REQUEST_FILENAME} -l [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^.*$ - [NC,L]
RewriteRule ^.*$ index.php [NC,L]

On Github License

Files

Download PDF of Htaccess file
ENV, REQUEST_FILENAME

Comments

Apache