soullotus wrote:
Thank you Mickey! And that is all the .htaccess. I am just beginning this site. Nothing on it yet really. I already have the Super Cache installed. Not sure what the RewriteCond% is. I don't know anything about code, so bear with me. ;) If I already have it installed, and this is all that shows up in my htaccess, where does the blahblah...code come from? Is it something I have to add in there? Or just leave it as RewriteCond%?
Hope my question makes sense.
Oh, just ignore that RewriteCond% RewriteCond% blahblahblahblah-some-rules-for-wp-super-cache. I just put that there to represent any rules that WP Super Cache places in your .htaccess file.
Are you saying there is nothing between these lines:
# BEGIN WPSuperCache
# END WPSuperCache
If so then your .htaccess should look like this:
Options +FollowSymLinks
# BEGIN WPSuperCache
# END WPSuperCache
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress