For the past couple of years, my blog has used a URL structure of
http://www.domain.com/2009/03/19/article-title/
I recently learned that such a URL is less about 10% (or more) less likely to get clicked than the following one, which is the same but without the dates:
http://www.yourdomain.com/article-title/
So, I researched how I could go about changing to not using dates. I found the following code to put into my .htaccess file:
RedirectMatch 301 /([0-9]+)/([0-9]+)/([0-9]+)/(.*)$ http://www.domain.com/$4
Of course, I had to change “domain.com” to “keenerliving.com”
In doing this, I have learned a good bit, and have written an the following article on Search Engine Land: A case study in changing URL structure. It has a great deal of additional information, including a better redirect rule, and is useful for anyone considering such a URL change. You should definitely not just use the above rewrite rule without reading the Search Engine Land article first.
Pingback: Site Redesign: Everything’s Bigger In Texas Edition — PaulStamatiou.com