Understanding how URLs are linked to Code in the HTML pages
Whenever we launch a website in the browser, it then gets modified as we navigate the other elements on that web site page. We notice that, the modified URL will mostly have the website actual website but with more strings attached to it starting with a ?. Example: We open a main web site page say http://www.yahoo.com/ Then we navigate to Yahoo mail login page: https://login.yahoo.com/?.src=ym&.intl=us&.lang=en-US&.done=http://mail.yahoo.com In the above we see the web site of yahoo.com is having URL with https://login.yahoo.com/ + ? + .src=ym&.intl=us&.lang=en-US&.done=http://mail.yahoo.com This process of URL modification is called the URL encoding. This is […]
Read more