• The blog in question is http://debralikes.com/

    When custom permalinks are turned on, single post pages result in 404 errors. The default structure (http://debralikes.com/?p=14) works fine, but all tested variations of pretty permalinks exhibit this problem.

    Only single posts result in 404s (archives, searches, and Pages work fine).

    I upgraded the blog to version 2.3.3. to test, but the issue was happening on 2.2.1 as well.

    The problem happens with all themes (including Default and Classic).

    The problem happens with all plugins disabled.

    The blog is installed in the root of the domain.

    The .htaccess exists and is writable (and based on timestamps, WordPress is writing to it). The contents are as follows:

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

    I’m stumped on this one. Any thoughts?

  • The topic ‘Permalinks result in 404 errors on single posts only’ is closed to new replies.