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.

When I go to a other's account in facebook then on url it looks like... www.facebook.com/username www.facebook.com/blaname etc

What is concept behind "/username" and "/blaname"? Is it a virtual directory or page?

share|improve this question

closed as not a real question by CBroe, Igy, Bill the Lizard Apr 1 at 12:30

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

If I understand correctly, you are referring to an url rewrite/friendly url procedure. Let's the programmer project an URL wich doesn't exist, mapping it to a real resource or page.

There are to famous engines that works with rewriting, the Apache mod_rewrite and the IIS rewrite module.

As appears in Wikipedia (http://en.wikipedia.org/wiki/Rewrite_engine), the advantages are:

  • The links are "cleaner" and more descriptive, improving their "friendliness" to both users and search engines.
  • They prevent undesired "inline linking", which can waste bandwidth.
  • They hide the inner workings of a web site's address to visitors, which can prevent them from discovering query strings that could compromise the site.
  • The site can continue to use the same URLs even if the underlying technology used to serve them is changed (for example, switching to a new blogging engine).

Hope it helps.

share|improve this answer