Toltar/AlbumApp/master/public/.htaccess - Htaccess File

Toltar/AlbumApp/master/public/.htaccess

SetEnv APPLICATION_ENV development

RewriteEngine On
# redirects all url with trailing slash without slash
RewriteCond %{REQUEST_URI} /$
RewriteRule ^(.*)/$ /$1 [R=301,L]
# Zend needs this redirect all url that does not point to file/directory to index.php
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, REQUEST_URI

Comments

Apache