BookArt/WashiMVC/master/dist/.htaccess - Htaccess File

BookArt/WashiMVC/master/dist/.htaccess

#
# WashiMVC Framework Redirection
# Version: 1.0
#
DirectoryIndex index.php

RewriteEngine On
RewriteCond %{REQUEST_FILENAME} -s [OR]
RewriteCond %{REQUEST_FILENAME} -l [OR]
RewriteCond %{REQUEST_FILENAME} -d [OR]
RewriteCond %{REQUEST_URI} /favicon.ico [NC]
RewriteRule ^.*$ - [NC,L]
# check if a missing skin image and redirect to default images folder
RewriteRule ^skins/.*/images/(.*)$ images/$1 [NC,L]
# route everything else to index.php
RewriteRule ^.*$ index.php [NC,L]

On Github License

Files

Download PDF of Htaccess file
REQUEST_FILENAME, REQUEST_URI

Comments

Apache