How to Build a Good SEO Url on Wordpress

category WordPress Pachecus Friday 23 November 2007

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

seo-url.jpg

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/

Share and Enjoy: These icons link to social bookmarking sites where readers can share and discover new web pages.
  • Digg
  • del.icio.us
  • StumbleUpon
  • Technorati
  • Reddit
  • YahooMyWeb

Related Post

4 Responses to “How to Build a Good SEO Url on Wordpress”

  1. What is a URL?

    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.

  2. MatthewT

    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

  3. Pachecus

    Thanks Matthew.. Really nice plugin

  4. Famefire

    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.

Leave a Reply