404 error when making new pages/posts
-
Hello,
I’ve scoured the forums and tried different combinations of every solution out there for the past two days, and still no luck.
Whenever I try to publish/preview a new post/page, I get a 404 error.
It’s not writing the page to my server.
What’s weird is that on the HOMEPAGE, the NAVIGATION LINK to the new page i attempted to post will show up, yet clicking on it reveals same old 404 error. (Using 3.0, should I downgrade?)Notes of interest (where the problem may lie):
The domain is iownpandora.com, with WP installed in the root directory.Permalink canonicalization is set to /%category%/%postname%/
.htaccess looks like this:
# BEGIN WordPress
<IfModule mod_rewrite.c>
Options FollowSymLinks
RewriteEngine On
RewriteBase /blog/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{HTTP_HOST} ^yourdomain\.co\.uk$ [NC]
RewriteRule (.*) http://www.yourdomain.co.uk/$1 [R=301,L]
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
The topic ‘404 error when making new pages/posts’ is closed to new replies.