Mobile app version of vmapp.org
Login or Join
Shelton105

: WordPress mod_rewrite redirect specific folders System: Debian Etch, Apache 2.2 I have a WordPress instance with multiple blogs. I would like to redirect some of the folders based on the year

@Shelton105

Posted in: #Apache #ModRewrite #Redirects #Wordpress

System: Debian Etch, Apache 2.2

I have a WordPress instance with multiple blogs. I would like to redirect some of the folders based on the year and month, while leaving other folders to go to the actual locations.

Example: I have archives for a few years, like 2010, 2011 and 2012:

example.com/wordpress/myblog/2010/02 http://example.com/wordpress/myblog/2011/01 example.com/wordpress/myblog/2012/01

I would like to redirect all 2010 and 2011 posts to another blog with the same folder structure:

example.com/wordpress/myotherblog/2010/02 http://example.com/wordpress/myotherblog/2011/01
and so on.


I would like to have 2012 and beyond to go to the actual site (ie. example.com/wordpress/myblog/2012/01).
I tried mod_rewrite with the following, one rule at a time to test redirection for just one year (and to expand later for other years), and none of them worked!


RewriteEngine is already on since there are some default WordPress rewrites.
RewriteBase is set to example.com/wordpress/.
I put my rule before all the other default WordPress rules are processed.


Didn't work solution #1

RedirectMatch 301 /myblog/2010/(.*) /myotherblog/2010/


Didn't work solution #2

RewriteRule /myblog/2010/(.*) example.com/myotherblog/2010/ [R=301]


Didn't work solution #3

RedirectPermanent /myblog/2010/(.*) example.com/myotherblog/2010/

I've also tried the above rules with and without a fully qualified URL for the new location.

The rewrite log, with log level set to 9, did not provide any useful information. It shows that it looks at the pattern specified against the URL (as mentioned in the rule), but finally what happens is a passthrough to example.com/myblog/ for all URLs or a 500 Internal Server Error.

Any ideas on where I could be going wrong or any alternative solutions?

10.02% popularity Vote Up Vote Down


Login to follow query

More posts by @Shelton105

2 Comments

Sorted by latest first Latest Oldest Best

 

@Hamm4606531

Try the following RewriteRule:

RewriteRule ^myblog/(2010|2011)/(.*)$ example.com/myotherblog// [R=301,L,NC]


Notice the inclusion of the L flag (last directive) the NC flag for nocase and the fact that the path name doesn't include the forward slash (since you might be dropping a .htaccess file into a directory). If it is not in a .htaccess file in a directory path that doesn't include the forward slash then simply:

RewriteRule ^/myblog/(2010|2011)/(.*)$ example.com/myotherblog// [R=301,L,NC]


If you are not sure of either then

RewriteRule myblog/(2010|2011)/(.*)$ example.com/myotherblog// [R=301,L,NC]

10% popularity Vote Up Vote Down


 

@Radia820

I can't explain why your rules don't work without seeing the whole .htaccess file, but you might find the Monkeyman Rewrite Analyzer Plugin helpful:-


It is only an analyzer, it does not change any rules for you. It
parses the rules down to their components and shows the connection
with the resulting query variables. It allows you to try out different
URLs to see which rules will match and what the value of the different
query variables will be.


This might give you some better clues on how to debug your code.

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme