• I have two different WordPress blogs that have pages (https://www.myjaxon.com and https://literarcyespacism.myjaxon.com) and I haven’t been able to get permalinks to work for them. The links worked fine for all of my posts, and my pages will show up in the sidebar using the php code, but the actually permalinks for the pages come up as a 404 error.

    For our posts, my husband set up our permalinks to look like this – /%year%/%monthnum%/%day%/%post_id%/

    For the pages, the permalinks look like this – https://www.myjaxon.com/about-me/

    I know our database is hooked up for the permalinks to look like the posts links, so I’m assuming that’s what’s wrong with the page links. However, where can I change the permalink structure for the pages? Is there a way to change them or should they be following the post structure? Help?

Viewing 1 replies (of 1 total)
  • have you made sure your .htaccess file is set up correctly ?

    Here is what I have on mine for reference:

    # 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 1 replies (of 1 total)
  • The topic ‘Permalinks for Pages’ is closed to new replies.