Hugao/php-simplemvc/master/.htaccess - Htaccess File

Hugao/php-simplemvc/master/.htaccess

RewriteEngine On

# Don't rewrite if a request is a actually folder, file or link
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-l

# Rewrite the request to index
RewriteRule ^(.+)$ index.php?URL=$1 [QSA,L]

On Github License

Files

Download PDF of Htaccess file
REQUEST_FILENAME

Comments

Apache