codeigniter baseurl not working

223 views Asked by At

I am using the baseurl() in my application. ex: "http://www.edocapp.in"

This is working in case if we type domain name with "www" but not working if I use "only http".

Application is hosted on server.

2

There are 2 answers

0
Ijaz Ahmed Bhatti On

try

$config['base_url'] = 'http://www.edocapp.in';

this

0
Johanes Effendi On

Base URL should have / in the last char:

$config['base_url'] = 'http://www.edocapp.in/';

anyway, you should check your DNS record in your server/hosting.

Does it have an alias (CNAME Records) to redirect www.edocapp.in to edocapp.in ?