Fariah/Alisa/master/.htaccess - Htaccess File

Fariah/Alisa/master/.htaccess

<IfModule mod_rewrite.c>

    RewriteEngine On
    RewriteBase /

    # Disable rewrite for valid directory/files
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d

    #map all request urls to a specific controller method
    RewriteRule ^(.*)$ index.php?/{controller}/{method}/$1 [L]
</IfModule>

On Github License

Files

Download PDF of Htaccess file
REQUEST_FILENAME

Comments

Apache