thecotne/php-cms-checker/master/.htaccess - Htaccess File

thecotne/php-cms-checker/master/.htaccess

DirectoryIndex index.php
<Files ~ "^.(.*)$">
    Order allow,deny
    Deny from all
    Satisfy all
</Files>

<IfModule mod_rewrite.c>
    RewriteEngine on

    # Send request via index.php (again, not if its a real file or folder)
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d

    RewriteCond $1 !^(index.php)
    RewriteRule ^(.*)$ index.php/$1 [L]

    # line for check
    RewriteRule checkmodrewriteitdc.php index.php?mode=mr [NC]
</IfModule>

On Github License

Files

Download PDF of Htaccess file
REQUEST_FILENAME

Comments

Apache