Doka-NT/SkobkaCMS/master/.htaccess - Htaccess File

Doka-NT/SkobkaCMS/master/.htaccess

AddDefaultCharset utf-8
# Don't show directory listings for URLs which map to a directory.
Options -Indexes

# Follow symbolic links in this directory.
Options +FollowSymLinks
# Make CMS handle any 404 errors.
ErrorDocument 404 /index.php
ErrorDocument 403 /index.php
# Set the default handler.
DirectoryIndex index.php

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

On Github License

Files

Download PDF of Htaccess file
REQUEST_FILENAME, REQUEST_URI

Comments

Apache