mycoin/moni-j/master/www/.htaccess - Htaccess File

mycoin/moni-j/master/www/.htaccess

<IfModule mod_rewrite.c>
    RewriteEngine on
    RewriteBase /
    
    # Hide the application and system directories by redirecting the request to index.php
    RewriteRule ^(application|system|views|.svn) index.php/$1 [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d

    #404 error page
    RewriteRule ^(.*)$ index.php/$1 [QSA,L]
</IfModule>

<Files ~ "^.(htaccess|htpasswd)$">
    deny from all
</Files>

Options -Indexes
Order Deny,Allow

On Github License

Files

Download PDF of Htaccess file
REQUEST_FILENAME

Comments

Apache