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 can see numerous websites that have a part of their link hidden. For example twitter.com which has no index.php / index html / index.asp whatsoever. Why is this happening?

Thanks!

share|improve this question

2 Answers

up vote 1 down vote accepted

It's most likely an Apache rule.

Read up on Apache and .htaccess files to learn more about them: http://httpd.apache.org/docs/1.3/howto/htaccess.html

share|improve this answer

Because they have defined this page as a default document in their respective web servers meaning that if it is not specified the web server automatically picks it. The way to achieve this varies between the different platforms and web servers. It could also be done on the application level. For example in ASP.NET MVC you could define in your route definition the default controller and action to be served:

routes.MapRoute(
    "Default",
    "{controller}/{action}/{id}",
    new { controller = "Home", action = "Index", id = UrlParameter.Optional } 
);

This way if the user requests / the Index action on the HomeController will be executed.

share|improve this answer

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.