dnaextrim/kukang-kecik/master/public/.htaccess - Htaccess File

dnaextrim/kukang-kecik/master/public/.htaccess

<IfModule mod_rewrite.c>
     # Make sure directory listing is disabled
    Options +FollowSymLinks -Indexes
    RewriteEngine on
    
    RewriteCond $1 !^(index.php|js|css|themes|images|robots.txt)
    
    # Send request via index.php (again, not if its a real file or folder)
    RewriteCond %{REQUEST_FILENAME} !-f
    # RewriteCond %{REQUEST_FILENAME} !-d
    
    <IfModule mod_php5.c>
        RewriteRule ^(.*)$ index.php/$1 [L,QSA]
    </IfModule>

    <IfModule !mod_php5.c>
        RewriteRule ^(.*)$ index.php?/$1 [L,QSA]
    </IfModule>

</IfModule>

<IfModule !mod_rewrite.c>
    # If we don't have mod_rewrite installed, all 404's
    # can be sent to index.php, and everything works as normal.
    # Submitted by: ElliotHaughin

    ErrorDocument 404 /index.php/404
</IfModule>

On Github License

Files

Download PDF of Htaccess file
REQUEST_FILENAME

Comments

Apache