Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Is there are any rule like limited folders in 301 in redirecting old url to new urls? We have to redirect some of the old urls of our client site but it is not. The problem is that those urls got more than two folders like for ex- .com/a/ab/abc & we've to redirect it to .com/abc but I read somewhere, I think in google only that you cannot do 301 redirect for more than two folders. Just wanted to know from your end, is it correct?If yes, then how do I solve the issue. Let me know your solution.

Thanks.

share|improve this question

closed as off topic by John Conde, Bill the Lizard May 7 at 20:14

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

1 Answer

I doesn't matter whether there are 2 or more than that directories in the URL path, what matters is only two things the "old" url and the "new" url. That's it. Google won't mind these.
If you are using PHP as scripting language, then you can redirect using
<?
Header( "HTTP/1.1 301 Moved Permanently" );
Header( "Location: http://www.new-url.com" );
?>
Just put here the new url location.

share|improve this answer
Thanks Jigar for your answer :) – hyderali Dec 16 '11 at 9:35
Thanks jigar, but I'm still getting this problem of redirection in my website. Let me explain it to you. My Old site URL is this webmaxtechnologies.com/web/about/corporate-profile & I want to redirect it to this URL webmaxtechnologies.com/corporate-profile.html Below is the code I'm using for redirection. Redirect 301 /web/about/corporate-profile/ webmaxtechnologies.com/corporate-profile.html & after testing the same on browser below is the error I'm getting webmaxtechnologies.com/about-us.htmlcorporate-profile which is 404 URL error. – hyderali Dec 18 '11 at 9:03
are you redirecting using .htaccess or PHP script ? – Jigar Tank Dec 18 '11 at 17:10

Not the answer you're looking for? Browse other questions tagged or ask your own question.