Silahkan masuk kedalam folder project anda, kemudia bukalah folder application
, lalu masuk ke folder config
. Carilah file config.php
seperti pada di bawah ini.
/* |-------------------------------------------------------------------------- | Index File |-------------------------------------------------------------------------- | | Typically this will be your index.php file, unless you've renamed it to | something else. If you are using mod_rewrite to remove the page set this | variable so that it is blank. | */ $config['index_page'] = 'index.php';
Kemudian hapus index.php
, sehingga akan seperti dibawah ini
/* |-------------------------------------------------------------------------- | Index File |-------------------------------------------------------------------------- | | Typically this will be your index.php file, unless you've renamed it to | something else. If you are using mod_rewrite to remove the page set this | variable so that it is blank. | */ $config['index_page'] = '';
lalu buat file .htaccess
didalam folder root project anda dan copykan script dibawah ini!
#Hapus index.php RewriteEngine On RewriteCond %{REQUEST_URI} ^/system.* RewriteRule ^(.*)$ index.php?/$1 [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.+)$ index.php?/$1 [L]
Pastikan file .htaccess
terletak di folder root project anda. berikut adalah gambaran struktur tabel lokasi file .htaccess
diletakan
- [Folder project anda] - application - assets - system - .htaccess - index.php