This is everything that is in my htaccess file.
# -FrontPage-
IndexIgnore .htaccess */.??* *~ *# */HEADER* */README* */_vti*
<Limit GET POST>
order deny,allow
deny from all
allow from all
</Limit>
<Limit PUT DELETE>
order deny,allow
deny from all
</Limit>
AuthName linkcreativedesign.com
AuthUserFile /hsphere/local/home/linkcrea/linkcreativedesign.com/_vti_pvt/service.pwd
AuthGroupFile /hsphere/local/home/linkcrea/linkcreativedesign.com/_vti_pvt/service.grp
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
That last portion starting and ending in <IfModule is what WP had me ad when it said it could not automatically update my htaccess.
before I had added that I could not get it to recognize that I had changed my permalinks to %pagename% but this fixed that BUT NOW my only problem is it not going the single page of a blog when clicking on the blog entry title.
Thanks