hey Lynn,
if you havent figured it out yet,
your .htaccess file in your home directory should look something like this...
DirectoryIndex index.php
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_URI} ^(/component/option,com) [NC,OR]
RewriteCond %{REQUEST_URI} (/|\.htm|\.php|\.html|/[^.]*)$ [NC]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule (.*) index.php
if your website is located in a folder in your home directory, change "RewriteBase /" to "RewriteBase /folder/"
"folder" being the folder that your website is located in under your home directory.
that fixed mine and FayeC s problem. hope it fixes yours!