• I am trying to set my permalinks to custom : /%postname%/
    When I look at posts, the link on top seems good. But when I try to use the link in another browser I get 404 page not found.
    The default works fine. I have tryed to create an .htaccess file but it didn’t help.
    Can someone advice?
    Thanks
    Michal

Viewing 2 replies - 1 through 2 (of 2 total)
  • I’m not clear on what the situation is. do you have to url to showcase your problem?

    Hi,

    Change the permalinks settings to your desired one and add this code in htaccess file of your domain:

    # 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 ‘Permalinks not working – getting 404 page’ is closed to new replies.