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 access some web pages, I see only www.XXX.com/contents not www.XXX.com/contents.aspx How is this possible?

share|improve this question
for example, look at yast.com. All pages I access in that webpage leads to somewhere without .aspx or .php extension. – Si Young Kim Feb 24 '12 at 23:19

2 Answers

up vote 1 down vote accepted

Adding to what yahyaE said. It used to be that URLs referred to specific files that the browser needed, and the server would directly return that file. However, once the domain name is used to single in on which server needs to be referred to, the rest of the URL is not enforced, it is just passed on to the server. So for example, when you visit www.XXX.com/Users/List, your browser sends the '/Users/List' part to the server software, which can then decide what page to return. File extensions are often hidden nowadays for the following reasons:

  1. To make the URLs more user-friendly. Non-technologists will remember that they had to visit the User List, but not the funny sequence of letters behind it.
  2. Thanks to server side programming, there isn't always one file corresponding to each page. Many pages can be generated by the function in one file based on parameters. Thus, you shouldn't see URL extensions on any reasonably modern and interactive site. For example, this very one, SO, omits file extensions, presumably because in the URL 'http://stackoverflow.com/questions/9439393/i-find-some-web-pages-missing-aspx-or-php-files-in-their-addresses', everything after '/questions/' is sent to a questions function (or 'controller'), which then uses the ID parameter to retrieve question number 9439393 and dynamically generate the html for that.

Google concepts like URL routing for more information, and you can see the platform specific information like mod_rewrite on PHP, routes on RoR and routing on ASP.NET

share|improve this answer

It called mod_rewrite or url routing. You can set it with .htaccess or you can use php frameworks with support url routing.

Most MVC frameworks work as "sitename.com/controller/function". It is basically the main reason of your question. My advice, if you are a newbee, do a little bit try to reinvent America by starting with a core server side language, i.e. php, asp. You will soon need to a framework afterward. Good luck in your journey.

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.