After doing some research about dates on blogs, it seems like it is a good idea to remove them from the existing posts.
Consider:
- Self-hosted (on Bluehost)
- Over 1,000 existing posts
- All posts are indexed by Google and many are linked to from other domains. Many posts are linked to within the blog. Don’t want to break links.
- Don’t want to lose Pagerank or age of the posts within Google. This is very important because most of the traffic is from Google, and many pages rank well.
- The current URL is:
http://www.thedomain.com/blog/2012/07/01/blah-blah-blah-blah/
- New URL should be
http://www.thedomain.com/blah-blah-blah-blah/
I know that it can be done with ModRewrite, but is this the best way? Will Google know that it is the same post?
Is it possible to change permalinks?
You’ll find this post by Joost De Valk on changing WordPress permalinks to only include
/%postname%
very helpful.How many posts you have doesn’t matter anymore if you are using the latest version of WordPress (at least > v3.3.1).
I believe your permalink structure initially was â this
/blog/%year%/%monthnum%/%day%/%postname%/
â and now, you are planning to use a much simpler one â/%postname%/
â amirite?If the above is true, you just have to add this rule to your .htaccess file, and it should take care of all the 301 redirects for you:
And since it’s a 301 redirect, yes, Google will eventually know that the post has been moved to a new URL.
EDIT: By the way, the redirect rule doesn’t require
mod_rewrite
. It usesmod_alias
which is enabled by default by most (if not almost all) hosts.