Switch to full style
What's behind JSP & Servlets
Post a reply

cookies &rewriting URL

Sun Jan 11, 2009 3:30 pm

what is the difference between cookies & URL rewriting?
which one is the better option to use?



Re: cookies &rewriting URL

Mon Jan 12, 2009 5:39 pm

URL rewriting is a technique used for SEO (Search engine optimization). The Idea is so simple
Instead of
Code:
Example.com/view.php?topic=games

Replace it with
Code:
Example.com/games.html

URL rewriting so different concept from the Cookies.

Cookies is an instance of data that is stored at client side .for example may be your username and password saved within you PC using your browser ( that is may be , Mozilla ,Internet explorer, opera to avoid rewriting them each time .

You can disable the using of cookies from your browser options.

have a good day .

Re: cookies &rewriting URL

Wed Apr 22, 2009 7:54 am

URL rewriting is another way to support anonymous session tracking. With URL rewriting, every local URL the user might click on is dynamically modified, or rewritten, to include extra information. The extra information can be in the form of extra path information, added parameters, or some custom, server-specific URL change. Due to the limited space available in rewriting a URL, the extra information is usually limited to a unique session ID.

Post a reply
  Related Posts  to : cookies &rewriting URL
 Easyphp url rewriting 500 server error     -  
 Using cookies in ASP     -  
 Handle Cookies using JQuery     -