When I used to use blogger, it created static html files that Google still hits today. Something like the following:
sitename.com/blogarchive/2005_06_01_sitename_archive.html
A few years ago, I started coding everything up myself, but noticed that I need to 301 these. There are around 40-50 of them, so I don't want to go in one by one and do it. Does anyone know a way to do a mod_rewrite rule on just a partial part of the link above?
Here's the new part to where they should be going:
sitename.com/date/[year]/[month]/
I only care about stripping out the year and month and I don't care about anything after the "2005_06" in the example above.
Any help would be appreciated.
Thanks.