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