• Okay, here’s a weird one. Site is setup for nice permalinks (day and name), but is primarily pages, so that they’re all just essentially /%postname%

    However, I’ve just tried to add a new page (first in a while) and when I put in the permalink URL for the new page it 404s. The .htaccess is correct, because the old pages resolve fine. And if I were to create a new POST, then THAT resolves fine. But any new page 404s. In fact, if I turn off the permalinks and go back to just ?page_id=60 when trying to access the page in question, it works. Turn permalinks back on (with .htaccess writable) and 404 again.

    I thought something might have gotten hosed in WordPress, so I did an upgrade to 2.7.1 from 2.7 in the hopes that might fix it, but no. And considering the .htaccess is correct (see below), I’m thinking an internal rewrite within WordPress might be the culprit.

    1. Any ideas on what might be causing this?
    2. Is there just a brute force Rewrite I can use in .htaccess to make this work, as beating my head against this has caved in my forehead and I’m less interested in fixing the root cause than just having a page that works. Gah.

    Thanks in advance.

    .htaccess:

    # BEGIN WordPress
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    </IfModule>
    # END WordPress

Viewing 5 replies - 1 through 5 (of 5 total)
  • I have the exact same problem! Anybody have any ideas on how to make that work?

    .htaccess is ok, permissions set to 666, WordPress is able to change it. Did all I could. Searched the web up and down… No luck.

    I upgraded from WP 2.6 to 2.7.

    Old pages and posts perfectly dispayed with both default and neat permalinks. Pretty permalinks also work for all new posts. However, new pages take me to the “Oops you are lost” screen…

    Help!

    try deleting the .htaccess
    regenerate permalinks
    admin – settings – permalinks

    Did it a million times.

    Checked every character in the .htaccess file. Everything is correct.

    Only “default” works for all permalinks.

    /%postname%/ works for old pages and all posts, but newly created pages can’t be accessed

    any other permalink structure, e.g. /%year%/%postname%/, kills the entire website – all pages and posts become unaccessible. 404…

    Same problem.
    Did anyone find the solution?

    Same problem here.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Post and old page permalinks work, new page permalinks don’t’ is closed to new replies.