• Hello,

    I’ve had all sorts of troubles since I changed the default permalink structure to “Day and Name.” Thankfully the following code inserted into the htaccess files fixed all the 404 errors users received when trying to navigate the site:

    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteRule ^index\.php$ – [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    </IfModule>

    However, when I am editing or composing a post, and I attempt to preview the draft, I get a “page not found” error and the message: “This is somewhat embarrassing, isn’t it?” I’ve searched high and low for answers. It sure would be nice to have a preview mode.

    Any ideas for a fix?

    Thank you very much!

    Greg

  • The topic ‘404 Errors Attempting To View Draft’ is closed to new replies.