Skip to content

Instantly share code, notes, and snippets.

View tomexsans's full-sized avatar

tom evaristo tomexsans

  • 12:16 (UTC +08:00)
View GitHub Profile
@tomexsans
tomexsans / .htaccess
Created June 12, 2018 07:22 — forked from keithmorris/.htaccess
CodeIgniter .htaccess file
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
#Removes access to the system folder by users.
#Additionally this will allow you to create a System.php controller,
#previously this would not have been possible.
#'system' can be replaced if you have renamed your system folder.
RewriteCond %{REQUEST_URI} ^system.*
RewriteRule ^(.*)$ /index.php?/$1 [L]