Skip to content

Instantly share code, notes, and snippets.

@yogasukma
Last active August 29, 2015 14:04
Show Gist options
  • Select an option

  • Save yogasukma/a720c8b285ef90ecc461 to your computer and use it in GitHub Desktop.

Select an option

Save yogasukma/a720c8b285ef90ecc461 to your computer and use it in GitHub Desktop.
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /namafolder
RewriteCond %{REQUEST_URI} ^system.*
RewriteRule ^(.*)$ /index.php?/$1 [L]
RewriteCond %{REQUEST_URI} ^application.*
RewriteRule ^(.*)$ /index.php?/$1 [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?/$1 [L]
</IfModule>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment