Thursday, December 5, 2019

Menghilangkan index.php pada CI

2 langkah menghilangkan index.php pada address saat di panggil


  1. Buka config.php pada : application/config
    $config['index_page'] = 'index.php';
    Hilangkan index.php. Contoh:
    $config['index_page'] = '';
  2. Buat file dengan nama .htaccess
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L]
Simpan di root CI


sumber"
https://www.malasngoding.com/menghilangkan-index-php-pada-codeigniter/

No comments:

Post a Comment