Hi, I've just hit a problem with permalinks. I enabled the custom structure and entered /%category%/%postname%/. I created a htaccess file and uploaded it to the root folder:
# BEGIN WordPress
<IfModule mod_rewrite.c>
ErrorDocument 404 /index.php?error=404
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
I am using a static front page which is entitled home and selected under the reading section. I am using a page entitled blog for the posts. I have read numerous posts and can't seem to find why the homepage isn't showing up. Any help much appreciated.