jooldesign/mapp-my-climate/master/public/.htaccess - Htaccess File

jooldesign/mapp-my-climate/master/public/.htaccess

RewriteEngine On
RewriteBase /
Options +FollowSymlinks

# Add a trailing slash to any non-static files
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_URI} !(.*)/$
RewriteRule ^(.*)$ %{REQUEST_URI}/ [R=301,L]

# Route through index.php
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php?url=$1 [QSA,L]

On Github License

Files

Download PDF of Htaccess file
REQUEST_FILENAME, REQUEST_URI, static

Comments

Apache