Kadelam/LancerCMS/master/.htaccess - Htaccess File

Kadelam/LancerCMS/master/.htaccess

ErrorDocument 404 /index.php

<IfModule mod_rewrite.c>
  RewriteEngine on

  # Block access to hidden files and folders.
  RewriteRule "(^|/)." - [F]

  RewriteBase /

  RewriteCond %{REQUEST_FILENAME} !-f
  RewriteCond %{REQUEST_FILENAME} !-d
  RewriteCond %{REQUEST_URI} !=/favicon.ico
  RewriteRule ^(.*)$ index.php?q=$1 [L,QSA]
</IfModule>

On Github License

Files

Download PDF of Htaccess file
REQUEST_FILENAME, REQUEST_URI

Comments

Apache