WordPress Permalinks SEO Question

majordude

Newbie
Joined
Feb 12, 2009
Messages
13
Reaction score
3
For SEO, does it matter if the link is:

domain.com/category/post
domain.com/post/
domain.com/post
domain.com/post.html

:confused:
 
at LEAST have the postname.. i've done well for some keywords just using postname, category could help though
 
I agree with biz. I normally use category/postname, but at least use the post name.
 
if you have a lot of categories,yes use them, if you have 4 or less, there really is no need.
 
Goto settings>permalinks then make custom permalinks and add this code for category and postname.

Code:
/%category%/%postname%/
 
how to configure permalinks in blog

As steveDj said, and don't forget to update your .htaccess file with:
Code:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress

or if your wordpress instalation is in folder (not root(, then:
Code:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /foo/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /foo/index.php [L]
</IfModule>
# END WordPress

Regards
 
You should just be able to go into settings/permalinks, WP will take care of the rest... I've never had to manually edit my .htaccess for permalinks...
 
You also want to be careful of URL Canonization. It has to do with having different linking structures on your blog and making sure they are all the same.

This is the best guide i've found about it:

Code:
http://www.jimwestergren.com/wordpress-users-sharpen-your-urls-with-google/
 
I've done both but I haven't done enough to see if there is a pattern.

I kinda think that /%category%/%postname%/ could produce a "silo" structure which might be good as long as there aren't links to other categories or posts (in other categories).
 
domain.com/post is the best way to go.
It is more SEO friendly
 
If you look at ezine articles.com, which is known to have one of the best silo structure, due to the number of categories it has.

All they use is /%postname%=%postid%

Search engines, figure out which category the post is located in.

I personally use /%postname%.HareKrishna

instead of /%postname%.html

why .HareKrishna

More people tend to bookmark pages ending with .HareKrishna, as long as their is NO porn, gambling, meat recipes or casual dating/whoring site. (or else you will get thumbs down on digg)

Ive gotten a lot of thumbsup on my pages, that are clean.
 
I've used this format with good results:

/%category%/%postname%/
 
Back
Top