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.

I have created one application for my portfolio.

Let's say the URL is http://fb.domain.com/about/ and my FB app is http://apps.facebook.com/myap/about/.

A user can access http://fb.domain.com/about/ directly from my site.

If the user types http://fb.domain.com/about/ or clicks http://fb.domain.com/about/, how do I redirect them to http://apps.facebook.com/myapp/about/

Here's an example from http://www.oodle.com.

If you go to this link, you will be redirected to here.

How is that done? Let me know. I currently use php for my site.

share|improve this question

3 Answers

up vote 2 down vote accepted

You can use ModRewrite in your .htaccess to redirect based on the rules set, which is probably the cleanest solution without involving hardcoding redirects in your code.

share|improve this answer

Something like this should work.

// Define current URL
$host = $_SERVER['HTTP_HOST'];
$self = $_SERVER['PHP_SELF'];
$query = !empty($_SERVER['QUERY_STRING']) ? $_SERVER['QUERY_STRING'] : null;
$url = !empty($query) ? "http://$host$self?$query" : "http://$host$self";

// If current URL is not Facebook's, redirect to Facebook
if($url == 'http://fb.domain.com/about/'){
 header("Location: http://apps.facebook.com/myapp/about/");
 exit();
}
share|improve this answer

Assuming all you need is the simple redirect, no page loading, then this should do it...

header("Location: http://apps.facebook.com/myapp/about/");
exit();
share|improve this answer
How script will detect if user access it directly or from facebook? If already in facebook should redirect it again? – Unknown Error Mar 3 '11 at 21:30
The script would run from the primary site, not the facebook application. If you are using apache, or something that supports .htaccess, I would go with the other answer though. ;) – Kevin Peno Mar 3 '11 at 21:35

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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