• Resolved ricketts8

    (@ricketts8)


    Can someone please explain to me how to make pages functional when using custom permalinks? The codex assumes you’re an ace at this and I’m not.

    /%date%/%category%/%title%/ Was the structure I selected and blog posts worked just fine. None of my pages did. I simply don’t understand the process or jargon to make pages work.

    https://emprisereview.com is the site, I’ve switched back for now so I can have viewers access content.

Viewing 4 replies - 1 through 4 (of 4 total)
  • Hi,

    Set your desired permalink from wordpress admin area 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

    Now, check with blog posts and pages.

    Thanks,

    Shane G.

    Thread Starter ricketts8

    (@ricketts8)

    Thanks, that worked.

    Have to say site feels like it is a bit slower.

    Actually using /%year%/%category%/%postname%/ …is there a better structure or is that pretty solid for performance?

    Hi,

    – Remove unwanted plugins and themez.
    – Ask your web hosting service provider to restart the web services and database service from the server.

    Thanks,

    Shane G.

    Thread Starter ricketts8

    (@ricketts8)

    Cleaned themes and plugins but didn’t have to call hosting. Everything’s moving fine now.

    Thanks

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