Never mind, I found the Unique Headers plugin!
Okay, I got it fixed – thanks for pointing me in the right direction!! The scripts installed the .htaccess file as .htaccess.ss. So I just renamed it correctly and all works great. Doh!
Well, I didn’t make any changes to the file. I installed the site using scripts provided by the host. Here it is:
# 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
Is something missing here? Thanks!
It works just fine. What’s up with that? I don’t want to use that when we go live. But it’s fine for development. Thanks! At least I can proceed.