How to Build a Good SEO Url on Wordpress
Many bloggers ask me via email how to build a good SEO (Search Engine Optimization) Url on their WordPress.
If you want to optimize your WordPress urls you have to follow these steps:
1. Login into your WP administrator
2. go to Options then Permalinks
3. Under Common options: click on Custom, specify below and then add /%postname%/ into the input box.
4. click “Update Permalink Structure“

Now you have to edit your htaccess file in your server and add this piece of code:
<IfModule mod_rewrite.c>
RewriteEngine On
Options +FollowSymlinks
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
That’s all.. now the url http://www.yourdomain.com/?p=123 was replaced by http://www.yourdomain.com/your-post/











Friday 23 November 2007 7:34 pm
Why do the search engines even care about what is in the URL? People don’t read them, so they are not relevant to the page’s content.
Saturday 24 November 2007 3:35 pm
I use a plugin for this, it prompts you for a describtion on each post. http://wp.uberdose.com/2007/03/24/all-in-one-seo-pack/
Combined with http://www.arnebrachhold.de/redir/sitemap-home/ it really works.
Cheers
Saturday 24 November 2007 4:13 pm
Thanks Matthew.. Really nice plugin
Saturday 1 December 2007 12:48 am
Hi, this is really very simple and fantastic post. With this post I could set my blog urls for SEO.
Tanks for your great work.