Page 1 of 1

Pretty Url problem [Solved]

Posted: Mon Jun 09, 2008 5:38 pm
by johnl
CMSMadesimple 1.2.5

PHp 5 MySql 5

Shared hosting

I have modified config.php for pretty URl's

$config['internal_pretty_urls'] = true;

$config['use_hierarchy'] = true;

but I am getting


http://example.com/index.php/parent/child

Instead of

http://www.example.com/index.php/parent/child

Any ideas?

Thanks

Re: Pretty Url problem

Posted: Mon Jun 09, 2008 6:37 pm
by tinhat
In config.php, around line 41 will be a line like:

$config['root_url'] = 'http://yourdomain.com';

make the correction there (to add www. onto yourdomain.com).

Re: Pretty Url problem

Posted: Mon Jun 09, 2008 6:41 pm
by johnl
tinhat wrote: In config.php, around line 41 will be a line like:

$config['root_url'] = 'http://yourdomain.com';

make the correction there (to add www. onto yourdomain.com).


Thank you