i have tried editing permalinks, but everytime i get a page not found. I simply want the url to go from mydomain.com/?page_id=20 to mydomain.com/home
help please
i have tried editing permalinks, but everytime i get a page not found. I simply want the url to go from mydomain.com/?page_id=20 to mydomain.com/home
help please
Did you remember to update your .htaccess file? You need to put this in it:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
and you can find more troubleshooting tips at Using_Permalinks over in the Docs section.
This topic has been closed to new replies.