[eluser]Nikhil Vijayan[/eluser]
When using ci always load url helper . so specify it in auto loader ( inside application/config/autoload.php )
inside the head tags of views add this
Code:
<head>
<base href="<?= base_url() ?>" />
</head>
make sure u have entered correct base url in config.php
now try . it will work :coolsmile:
and also use the following ways when you link to another pages
Code:
<?= anchor('home','home') ?>
or
Code:
<a href="<?= site_url('home') ?>">home</a>
whichever makes sense to you