• I just set up a blog today for a friend. Everything was running smoothly but once I published a post and tried to click on it, it went to a 404 Page Not Found page. I can’t figure out why this is happening. I’ve tried 4 test posts and they are all doing this.

    Any help is greatly appreciated.
    https://perfectlypresentedonline.com/wpblog/ is the new blog.

    Amanda

Viewing 2 replies - 1 through 2 (of 2 total)
  • Try resetting your custom permalinks back to the default setting via Settings -> Permalinks. If this works, then check with your hosts that mod_rewrite is enabled on the server before setting a custom permalink structure back up again.

    You may simply need to place an .htaccess file at the root of your wordpress folder, with these contents inside :

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

    # END WordPress

    If you’re new to htaccess files, you can create them as htaccess.txt on your local computer, then upload them with FTP, and finally rename them, once uploaded on the server, to .htaccess

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘All Posts Leading to 404 Page Not Found’ is closed to new replies.