I have a website, a canvas app and a tab.
I would like to have internal link in the canvas app to work normally (i.e. to link to canvas app)
I would lito to have links in the tab to link to the website. This seems not possibile.
I'm using, inside the code for the tab
$url = WEBSITE . url("node/" . $node->nid);
and is transalted into:
http://apps.facebook.com/CANVASAPP/YOUR ALIASED URL
This is because, I think, fb_url_rewrite.inc is doing some magic here to keep links for canvas app internal to the app. But I'm not using an app, I'm using a tab...
A simple call to url function
$url = url("node/" . $node->nid);
returns something like
/fb_page/PAGE CODE/YOUR ALIASED URL
So, it seems that fb_url_rewrite.inc is changing the url two times...

Is there any way to do what I need without hacking fb_url_rewrite.inc?