i contacted google through their groups about why they werent indexing my page and why I could not verify my site under google webmaster. They said that it was my HTACCESS file that was giving a error 500 instead of 404. I redirected my site from .com to .com/blog and I would like to do this still. my htaccess file is below, what should I do to fix the problem? RewriteEngine on RewriteCond %{HTTP_HOST} ^(www.)?paranormalknowledge.com$ RewriteCond %{REQUEST_URI} !^/blog/ RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.*)$ /subfolder/$1 RewriteCond %{HTTP_HOST} ^(www.)?paranormalknowledge.com$ RewriteRule ^(/)?$ blog/ [L]