lexblagus/Quiki/master/.htaccess - Htaccess File

lexblagus/Quiki/master/.htaccess

# -----------------------------------------------------------------------------
# F    r    o    n    t          c    o    n    t    r    o    l    l    e    r
# -----------------------------------------------------------------------------
<IfModule mod_rewrite.c>
RewriteEngine On

# Comment the line bellow if you don't want to deliver existent files
RewriteCond %{REQUEST_FILENAME} !-f

# Comment the line bellow if you don't want to deliver existent folders
RewriteCond %{REQUEST_FILENAME} !-d

# Redirect all requests to the given file
RewriteCond %{REQUEST_URI} !index.php
RewriteRule .* ./index.php [L]

</IfModule>

On Github License

Files

Download PDF of Htaccess file
REQUEST_FILENAME, REQUEST_URI

Comments

Apache