Tarential/Saint-CMS/master/.htaccess - Htaccess File

Tarential/Saint-CMS/master/.htaccess

Options -Multiviews

<IfModule mod_rewrite.c>
    RewriteEngine On

    # If you are having problems with your web server,
    # uncomment this and change the base to your Saint location.
    #RewriteBase /Saint/

    # Block all direct access to settings, code and download files
    RewriteRule ^(downloads/.+)$ index.php?/$1 [L,QSA]
    RewriteRule ^(.*.xml)$ index.php?/$1 [L,QSA]
    RewriteRule ^(.*.php)$ index.php?/$1 [L,QSA]

    # Check to see if the user is attempting to access a valid file,
    # such as an image or css document. If this isn't true it sends the
    # request to index.php
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule ^(.*)$ index.php?/$1 [L,QSA]
</IfModule>

On Github License

Files

Download PDF of Htaccess file
REQUEST_FILENAME

Comments

Apache