I'm trying to link to Archives from the top right corner nav of the main page here:
the blog
but keep getting the 404 error. I'm sure it has something to do with permalinks I've set up (here are my settings):
Custom Field
/%year%/%monthnum%/%day%/%postname%/
and my htaccess file here:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /blog/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /blog/index.php [L]
</IfModule>
# END WordPress
But can't for the life of me figure out what I'm doing wrong. Could someone please help?