I have been baffled for a few days with this one. When using Clean URLs, all .html pages redirect to the homepage. This happens to both static and dynamically generated pages. But, all .php pages work correctly. I'm using the following .htaccess and I am running SSL on the domain.
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
This info came from the original install, and several sources online. I'm not an expert by any means and could really use some help. Most of this is foreign to me.
Any suggestions? Thanks!