Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

If I have an app on facebook that's pulling the content from http://example.com for instance, is there a way I can stop people visting the example.com site and instead redirect them to the facebook app page?

share|improve this question
Upvoting. Great question, I've wondered about this as well. – DMCS Dec 29 '11 at 19:40

4 Answers

Facebook is sending a POST variable called signed_request when the page is opened within a Fan Page Tab or the Canvas page of your App. Simply check if the POST variable is there and redirect to your App's Canvas page if not ;-)

Here you can read a bit how the signed_request is used inside an App.

share|improve this answer
Thanks! Will have a go later on, I'll let you know how it goes – chrisborrowdale Dec 30 '11 at 10:43

1) Pull your content from your website from a subfolder

2) Redirect them from the index.html using a meta tag: http://www.web-source.net/html_redirect.htm

A better way would be to check if the content is being displayed inside facebook and then redirect but I have no idea how to do that

share|improve this answer

Edit the .htaccess or conf.d file on your Apache web server (or the rewrite rules in IIS) to give a 301 Permenant Redirect.

Assuming you have Apache:

1.) Log into the box using ssh or some terminal emmulation program

2.) cd /etc/httpd/conf.d

3.) Locate the the configuration file for your site, edit it using vi, emacs, nano, or some text editor

4.) See here on how to write the rewrite rule.

share|improve this answer
The 301 won't work because of the iframe limitation through facebook, the app still needs to be able to view the site to pull the content in – chrisborrowdale Dec 29 '11 at 17:14

Kalvin is close. Props to Kalvin :)

  1. Setup your website to default to index.html
  2. Move the real content of your site from index.html to index-fb.html
  3. In index.html then place either the meta tag for redirection or just javascript for location.href='' script for redirection. The url to redirect to will be in the https://apps.facebook.com/{yourappname} format.
  4. In facebook, update the app settings canvas app url from http://example.com to http://example.com/index-fb.html
share|improve this answer
Did this answer help you to find your solution to your question, if so, please accept this answer. See meta.stackoverflow.com/questions/5234/… for how to mark answers. Thank you! – DMCS Feb 4 '12 at 15:07

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.