I tried changed the following
RewriteBase /cms
RewriteCond %{REQUEST_FILENAME} !-f [NC]
RewriteCond %{REQUEST_FILENAME} !-d [NC]
RewriteRule ^(.+).htm$ index.php?page=$1 [QSA]
This works however menu links add the cms to links eg. mydomain/cms/contact.html
In order to fix this I have to change my config.php to
$config['root_url'] = 'http://mydomain'; ---> old $config['root_url'] = 'http://mydomain/cms';
Problem stylesheet stops working and admin area as they require cms/
