I'm having the same problem
I'm running Apache on a windows machine for local testing.
The CMSMS works fine without the friendly urls.
This is config file
#------------
#URL Settings
#------------
#Show mod_rewrite URLs in the menu? You must enable 'use_hierarchy' for this to work for modules
$config['assume_mod_rewrite'] = true;
#Extension to use if you're using mod_rewrite for pretty URLs.
$config['page_extension'] = '/';
#If you don't use mod_rewrite, then would you like to use the built-in
#pretty url mechanism? This will not work with IIS and the {metadata} tag
#should be in all of your templates before enabling.
$config['internal_pretty_urls'] = true;
#If you're using the internal pretty url mechanism or mod_rewrite, would you like to
#show urls in their hierarchy? (ex.
http://www.mysite.com/parent/parent/childpage)
$config['use_hierarchy'] = true;
#If using none of the above options, what should we be using for the query string
#variable? (ex.
http://www.mysite.com/index.php?page=somecontent)
$config['query_var'] = 'page';
this is .htaccess
Options +FollowSymLinks
RewriteEngine on
RewriteBase /cmsmadesimple (
I tried this with / also, same result)
# 301 Redirect all requests that don't contain a dot or trailing slash to
# include a trailing slash
RewriteCond %{REQUEST_URI} !/$
RewriteCond %{REQUEST_URI} !\.
RewriteRule ^(.*) %{REQUEST_URI}/ [R=301,L]
# Rewrites urls in the form of /parent/child/
# but only rewrites if the requested URL is not a file or directory
RewriteCond %{REQUEST_FILENAME} !-f [NC]
RewriteCond %{REQUEST_FILENAME} !-d [NC]
RewriteRule ^(.+)$ index.php?page=$1 [QSA]
the error log says the following for apache
[Thu Dec 06 22:41:05 2007] [error] [client 127.0.0.1] File does not exist: C:/Program/Apache Software Foundation/Apache2.2/htdocs/cmsmadesimple/niftyCorners.css, referer:
http://localhost:8080/cmsmadesimple/index.php
I just get the Page not found

Anything that I missed? do I have to activate something in the apacheserver maybe?
Regards,
[glow=red,2,300]DW[/glow]