CodeIgniter Anchor error: URL not found on this server
问题 I have been for hours to make a simple anchor link working without success. My controller is class Welcome extends CI_Controller { public function index() { $this->load->view('template'); } public function contact() { $this->load->view('contact'); } } My template.php view is basically a file with <a class="menuhref"> <?php echo anchor('welcome/contact/','Contato')?> </a> I also have a contact.php in the views directory. My config.php is $config['base_url'] = 'localhost'; $config['index_page']