2 langkah menghilangkan index.php pada address saat di panggil
sumber"
https://www.malasngoding.com/menghilangkan-index-php-pada-codeigniter/
- Buka config.php pada : application/config
$config['index_page'] = 'index.php';
Hilangkan index.php. Contoh:
$config['index_page'] = '';
- Buat file dengan nama .htaccess
RewriteEngine OnSimpan di root CI
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L]
https://www.malasngoding.com/menghilangkan-index-php-pada-codeigniter/
No comments:
Post a Comment