waifung0207/ci_bootstrap_3_demo/master/.htaccess - Htaccess File

waifung0207/ci_bootstrap_3_demo/master/.htaccess

<IfModule mod_rewrite.c>
  #--- Uncomment this line for production or testing server
  #SetEnv CI_ENV production

  #--- URL rewrite
  #--- Note: require Rewrite mod enabled (sudo a2enmod rewrite)
  RewriteEngine On
  RewriteCond %{REQUEST_FILENAME} !-f
  RewriteCond %{REQUEST_FILENAME} !-d
  RewriteRule ^(.*)$ index.php/$1 [L]
</IfModule>

<IfModule !mod_rewrite.c>
  # If we don't have mod_rewrite installed, all 404's
  # can be sent to index.php, and everything works as normal.
  # Reference: https://gist.github.com/philipptempel/4226750

  ErrorDocument 404 /index.php
</IfModule>

On Github License

Files

Download PDF of Htaccess file
ENV, REQUEST_FILENAME

Comments

Apache