I have installed cmsms and am having an issue with the links. The links are coming out as http://www.mysite.com/cms/index.php/Contact
Basically, the page name is being appended to the url with a preceding slash. I am getting page not found errors.
Any ideas on how to properly link to the pages I create in cmsms?
Thanks
Links not working Topic is solved
Re: Links not working
have you copied htaccess.txt to your main folder and renamed it to .htaccess?
- Elijah Lofgren
- Power Poster
- Posts: 811
- Joined: Mon Apr 24, 2006 1:01 am
Re: Links not working
The builtin pretty URL scheme doesn't work on some webhosts (does not work with IIS, for example).shandog wrote: I have installed cmsms and am having an issue with the links. The links are coming out as http://www.mysite.com/cms/index.php/Contact
Basically, the page name is being appended to the url with a preceding slash. I am getting page not found errors.
Any ideas on how to properly link to the pages I create in cmsms?
Open config.php,
find:
Code: Select all
$config['internal_pretty_urls'] = true;
Code: Select all
$config['internal_pretty_urls'] = false;
For a way to use .htaccess to get URLs like:
www.example.com/parent/child
see: http://wiki.cmsmadesimple.org/index.php ... retty_URLs
Note: I don't have time to take on any more projects. I'm quite busy. I may be too busy to reply to emails or messages. Thanks for your understanding. 

Re: Links not working
Elijah,
Sorry for the late response, but thanks for your information, it was very helpful.
Sorry for the late response, but thanks for your information, it was very helpful.