Tagged: 

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #402884

    Hello,

    For the moment my permalinks are :
    /?page_id=21/

    I tried to change them using the option permalinks panel but it’s not working.
    I tried all the different types. Its still stays the same.
    I tried customized with :
    /%pagename%/
    which is what i want them to be but stil not working.
    Any ideas how i can fix that ?

    Thanks a lot.

    #402890

    Hi,

    Did you use the options within the wordpress? If so it should be /%postname%/ not /%pagename%

    Even for pages the permalink should be %postname%

    That should work for you.

    • This reply was modified 9 years, 8 months ago by robertscott.
    #403202

    Hey!

    What does your .htaccess file say? You can find it in the root folder of your WordPress installation. It should read something like this if you have postname turned on:

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

    Cheers!
    Rikard

Viewing 3 posts - 1 through 3 (of 3 total)
  • You must be logged in to reply to this topic.