stadja/lemero/master/.htaccess - Htaccess File

stadja/lemero/master/.htaccess

# see if the module is active
<IfModule mod_rewrite.c>

    Options +FollowSymLinks
    
    # activate RewriteEngine
    RewriteEngine on

    # send the requests through index.php, except if they are a file ...
    RewriteCond %{REQUEST_FILENAME} !-f

    # ... or a directory
    RewriteCond %{REQUEST_FILENAME} !-d

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

</IfModule>

On Github License

Files

Download PDF of Htaccess file
REQUEST_FILENAME

Comments

Apache