RewriteEngine On
RewriteBase /your_root_web/app/
RewriteCond %{REQUEST_FILENAME} !-l
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L,QSA]
2.create db_rental_motor
databse using phpmyadmin or whatever and import db_rental_motor.sql
on analisis/
<?php
return array(
'default' => array(
'driver' => 'mysqli',
'host' => 'your_host',
'port' => 3306,
'user' => 'your_username',
'password' => 'your_password',
'database' => 'db_rental_motor',
'tablePrefix' => '',
'charset' => 'utf8',
'collate' => 'utf8_general_ci',
'persistent' => false,
),
);
Created By Yuana, Andhika 2015