ngsoft/MEDIADRIVE/master/Public/.htaccess - Htaccess File

ngsoft/MEDIADRIVE/master/Public/.htaccess

# Display PHP Errors
#php_flag display_errors 1
#Display all php errors
#php_value error_reporting 30719
#Display nothing
#php_value error_reporting 0

#ErrorDocument 403 /forbidden
#ErrorDocument 404 /NotFound/index.html

Options +FollowSymLinks -Indexes

<IfModule mod_rewrite.c>
    SetEnv HTTP_MOD_REWRITE On
    RewriteEngine On
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !.(js|css|png|jpg|jpeg|gif)$
    RewriteRule ^(.*)$ index.php/$1 [QSA,L]
</IfModule>
AddType text/cache-manifest manifest

On Github License

Files

Download PDF of Htaccess file
REQUEST_FILENAME

Comments

Apache