php - codeiginiter always shows 404 error ubuntu 14.04 -
i done project using codeiginiter in windows(xampp), changed os ubuntu 14.04 , have installed lamp , lamp works fine. i copied project files /var/www/html , changed configurations ububtu $config['base_url'] = 'http://localhost/lankaproperty/'; $config['index_page'] = 'index.php'; routes $route['default_controller'] = 'welcome'; $route['404_override'] = 'home/error_404'; $route['500_override'] = 'home/error_500'; $route['translate_uri_dashes'] = false; .htaccess rewriteengine on rewritecond %{request_filename} !-f rewritecond %{request_filename} !-d rewriterule .* index.php?/$0 [pt,l] i have changed file permissions 755.. when try default controller http://localhost/lankaproperty/ works fine.. but none of other controller working http://localhost/lankaproperty/home http://localhost/lankaproperty/index.php?/home i error. ` 404 page not found the page requested no...