• Hello WP community,

    As a noobie, I was setting up WordPress, building a nested page structure for my static data: https://www.lllabo.com/

    most of the pages worked fine:
    https://www.lllabo.com/practice/journalism

    but some of them under one nested group were showing up as “NOT FOUND”
    https://www.lllabo.com/teaching/lecture-courses

    I tried deleting the pages and making them again. I tried republishing them many times,.

    When I search for them they do appear, but they seem to show up as uncategorized posts, not pages like all my other pages.

    If anyone can help out there, please tell me what’s going on here?

    I wonder if it might have something to do with permalinks? May be I confused WordPress by manually overwriting a the permalink for “teaching” at one point, I seem to remember doing something like that, but I’m not sure if that would be a thing, and I can’t remember if I even did that anyway.

    Thank you in advance for your time in reading this and any feedback you might be able to give.

    Marc

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter mtuters

    (@mtuters)

    I found the error. in setting up the custom permalinks i had used a word (“teaching”) that was one of my category bases which then did not allow me to see any pages nested below that category. i fixed it by simply using a generic word (“word”) for setting up the custom permalinks to resolve that conflict.

    Hi,

    Set your desired permalink and add this code in 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

    Thanks,

    Shane G.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Page is “NOT FOUND”’ is closed to new replies.