InterviewSolution
Saved Bookmarks
| 1. |
What is URL rewriting? |
|
Answer» You can append some extra data on the end of each URL that identifies the session, and the server can associate that session identifier with data it has stored about that session.For example, with http://tutorialspoint.com/file.htm;sessionid=12345, the session identifier is attached as sessionid=12345 which can be accessed at the web server to identify the client. |
|