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
Pretty Url problem [Solved]
Pretty Url problem [Solved]
Last edited by johnl on Mon Jun 09, 2008 6:41 pm, edited 1 time in total.
Re: Pretty Url problem
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).
$config['root_url'] = 'http://yourdomain.com';
make the correction there (to add www. onto yourdomain.com).
Re: Pretty Url problem
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