1

I am a new of web developer. I try to host Codeigniter. Before I host, I edit the code in the config.php and my database:

$config['base_url'] = 'http://mbl.myburgerlab.com.kh/';

But, I cannot and the error is:

404 Page Not Found

The page you requested was not found.

Who can help me, please?

Unheilig
  • 16,196
  • 193
  • 68
  • 98
user307709
  • 255
  • 3
  • 19

1 Answers1

1

Try this in config.php

$config['base_url'] = ''; # keep empty

In routes.php

$route['default_controller'] = "";

As well as check your Spellings and Beware about case-sensitive

Abdulla Nilam
  • 36,589
  • 17
  • 64
  • 85