Facebook Page Link Change

How do I change a link to my app that I added to my fan page?

Specifically by FB design, the link utilizes the smaller Iframe to display the content of the APP. The URL is …mypage/mypage_id?sk=app_####

I would like the link on the side of my fan page to just link directly to the app, by passing the smaller Iframe, and utilize the larger Iframe that’s offered when people access the app directly.

Tell me it’s possible?

Thanks!

Once that you have set the username of your app, you cannot change the username again. Facebook strictly abides by this as to refute any confusion between the Bing Powered Search Engine and the values set for the particular app or profile. It doesn’t even let you use the username whose profile has been deactivated. You have to very much be friends with Mark Zuckerberg to go through this!!

Yes but you can only change once in intial stage when your fan will be increase you cant change even name on your page on face book.

You can’t change your name after 100 likes, and you can’t change the url until you get 25 likes.

-MP3Tiger

I think that maybe the other posters misunderstood your question.

As I understand you, you created an app, that you have included in a custom tab on your page. Now you want the users that click on the tab to be redirected to the application page with the larger canvas.

If this is your question, then the answer is simple. Add the following code to in the header of the custom tab code

<script>
function redirect() {
top.location.href = ‘YOUR_APP_PAGE_URL’;
}
</script>

And then in your body tag:
<body onload=“redirect()”>

Hope this helps.