Home > Blockchain >  how to setup Base URL in codeigniter3
how to setup Base URL in codeigniter3

Time:06-29

I need to set the base URL in my CodeIgniter project. I have try with many way but it's not working. how to do this?

 BASE URL

CodePudding user response:

You can go in you Appliction/cofing folder in the config folder you can edit the congig.php file there is an option

 `$config['base_url']='Set your URL here';
  • Related