I recently installed a fresh version of WP 3.4.1 on my hosts server.
Everything seemed to install correctly, I can login to the dashboard and everything appears to be functioning correctly but when I try to view the pages/posts I get a
Page Not Found error
HTTP 404 - File not found
I dont believe this is the themes 404 page because it is unformated and looks generic. I searched and read a few other threads that suggest resetting the permalinks. I also created an .htaccess file withing the new WP directory and tried a few different configurations shown in the previous threads but still no luck.
This is what I have for the .htaccess file
<Files *>
Header set Cache-Control: "private, pre-check=0, post-check=0, max-age=0"
Header set Expires: 0
Header set Pragma: no-cache
</Files>
RewriteEngine On
RewriteBase /zen/
RewriteRule ^index\.php$ - [L]
# uploaded files
RewriteRule ^([_0-9a-zA-Z-]+/)?files/(.+) wp-includes/ms-files.php?file=$2 [L]
# add a trailing slash to /wp-admin
RewriteRule ^([_0-9a-zA-Z-]+/)?wp-admin$ $1wp-admin/ [R=301,L]
RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^ - [L]
RewriteRule ^[_0-9a-zA-Z-]+/(wp-(content|admin|includes).*) $1 [L]
RewriteRule ^[_0-9a-zA-Z-]+/(.*\.php)$ $1 [L]
RewriteRule . index.php [L]
Any suggestions would really help me from pulling out the rest of my hair Lol!
Thank You