Skip to content

Instantly share code, notes, and snippets.

@egin10
Last active November 4, 2019 01:56
Show Gist options
  • Save egin10/5b8d17141079bb1c5eaaef95023eedeb to your computer and use it in GitHub Desktop.
Save egin10/5b8d17141079bb1c5eaaef95023eedeb to your computer and use it in GitHub Desktop.
Mengilangkan index.php pada CodeIgniter
//put this in root directory of project
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L]
//Edit file config.php
//before
$config['index_page'] = 'index.php';
//after
$config['index_page'] = '';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment