I am new in CodeIgniter. I setup CI in my localhost Eg. localhost/MyProjects/CodeIgniter/welcome/index
I can able to remove the index.php from the url & I also c
Just edit url_suffix in config.php .....
url_suffix
$config['url_suffix'] = '.html';
Use site_url()
Register
Or anchor()
// No need .html echo anchor('welcome/register', 'Register'); // Register
Note : Dont forget to load URL helper with $this->load->helper('url');.
$this->load->helper('url');