Hi guys...
Well i'm horrible with regular expressions but I managed to get my CMS partly working with mod_rewrite.
I use:
RewriteRule ([/]+)*.html /index.php?name=$1
which basically turns a URL like http://www.mysite.com/page.html into http://www.mysite.com/index.php?name=page
This works great except for one thing. I want to be able to turn URL's such as http://www.mysite.com/directory/page.html into http://www.mysite.com/index.php?name=directory/page
Can anyone help me with that? THANKS