fiesta-framework/Documentation/master/.htaccess - Htaccess File

fiesta-framework/Documentation/master/.htaccess

Options +FollowSymLinks
#IndexIgnore */*
# Turn on the RewriteEngine
RewriteEngine On
#  Rules
#RewriteCond %{REQUEST_FILENAME} !-f
#RewriteCond %{REQUEST_FILENAME} !-d
#RewriteRule . public/index.php?$url=$1
#RewriteRule ^(.+)$ public/index.php?url=$1 [QSA,L]

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.+)$ public/index.php?url=$1 [QSA,L]

# Empty Url
RewriteCond %{QUERY_STRING} ^$
RewriteRule ^/?$ public/index.php

On Github License

Files

Download PDF of Htaccess file
QUERY_STRING, REQUEST_FILENAME

Comments

Apache