• Hi.. I really hope that someone can help.. I am having a strange problem with the pretty permalinks. It is working great for pages but posts just return a 404.

    I am using this in my .htaccess

    # BEGIN WordPress

    <IfModule mod_rewrite.c>
    ErrorDocument 404 /index.php?error=404
    RewriteEngine On
    RewriteBase /
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    </IfModule>

    # END WordPress

    Anyone else experience this or have any ideas where I could start searching for a fix ? ?

Viewing 2 replies - 1 through 2 (of 2 total)
  • Steve

    (@stevejohnson)

    Turn permalinks off, then verify you can get to your posts. Then turn permalinks back on.

    The .htaccess code is standard WordPress fare. The magic comes from within WordPress when it receives a URL request. The simple act of regenerating the permalinks might fix your issue.

    Thread Starter Zac

    (@zac)

    Oh thank you so much! I love simple solutions !!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Permalinks problems’ is closed to new replies.