Tagged: permalink
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.
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.
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