Ive been struggling to get a .htaccess file working on codeigniter, im having that issue when you load any other page aside index that, every time you click on a link in my nav bar it tacks on an index.php/, so after the first click on a link, you end up with things like http://www.website.com/index.php/index.php/page
When I open an image from site http://website.com/new/index.php/website.com/new/img/gallery/fw1.jpg
My link same as index.php/About">Aboutour team
My config file $config['base_url'] = 'website.com/new/';
How can I solve this problem?
site_url('page');to get the correct URI. Have a look at ellislab.com/codeigniter/user-guide/helpers/url_helper.html - swatkins