yonineitor/fast-codeigniter/master/.htaccess - Htaccess File

yonineitor/fast-codeigniter/master/.htaccess

RewriteEngine On

RewriteCond %{REQUEST_URI} ^/system.*
RewriteRule ^(.*)$ index.php?/$1 [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.+)$ index.php?/$1 [L]
      
RewriteCond %{HTTPS} on
RewriteRule ^.*$ http://%{SERVER_NAME}%{REQUEST_URI} [R,L]

ErrorDocument 404 index.php  

php_flag display_startup_errors on
php_flag display_errors on
php_flag html_errors on
php_flag log_errors on

On Github License

Files

Download PDF of Htaccess file
HTTPS, REQUEST_FILENAME, REQUEST_URI, SERVER_NAME

Comments

Apache