I am downloading my site online to my local machine. The database is done set up.
My question is how can change all the navigation in the application within local?
this is my config file
$config['base_url'] = 'https://www.yiyalo.com/';
this is an example of sign up
<a href='<?php echo base_url(); ?>signup/' target="_self" >
so that it will go to https://www.yiyalo.com/signup
when the link is press.
Now, how can I perform that in localhost so that I can modify the code in the localhost?
My file is stored in a folder called 'yiyalo
'.