Sunday, 15 January 2012

.htaccess - 301 redirect with htaccess from Tumblr to Wordpress -



.htaccess - 301 redirect with htaccess from Tumblr to Wordpress -

i'm quite new htaccess, i'd require lite here.

i set new site wordpress , want redirect old tumblr posts ones imported wordpress.

domain construction follows:

old tumblr: tumblr.domain.com

new wordpress: www.domain.com

and post construction is:

old tumblr: tumblr.domain.com/post/numberid/post-title

new wordpress: www.domain.com/post-title

i made research , don't know why, reason i'm having 404.

what thought best bet this:

rewritecond %{http_host} ^tumblr.domain.com/post/(.*?)/(.*?)$ rewriterule http://www.domain.com/$2 [r=301,l]

but doesn't work, have 404.

note: see home (www.domain.com) when entering tumblr.domain.com

any help apreciated. in advance.

never mind, solved myself, had rebuild htaccess due addiotional problems found. anyway, trying redirect tumblr posts subdomain it's main domain, how made it:

first, 301 subdomain domain:

rewritecond %{http_host} ^tumblr\.domain\.com [nc] rewriterule ^(.*) http://www.domain.com/$1 [l,r=301]

and then, 301 tumblr posts imported posts:

rewriterule ^(.*) http://www.domain.com$1 [l,r=301] rewriterule ^/?post/([0-9]+).(.*?)$ http://www.domain.com/$2 [l,r=301]

for cases, renamed posts in new site, won't work those. had redirect manually posts, had add together next line after lines above:

rewriterule ^old-post-title http://www.domain.com/new-post-title/ [r=301,l]

hope works in same situation.

wordpress .htaccess redirect tumblr

No comments:

Post a Comment