Joined: Sun Nov 16, 2008 12:19 pm Posts: 6 Has thanked: 0 time Have thanks: 0 time
what is the difference between cookies & URL rewriting? which one is the better option to use?
msi_333
Question subject: Re: cookies &rewriting URL
Posted: Mon Jan 12, 2009 5:39 pm
Joined: Tue Mar 27, 2007 10:55 pm Posts: 2279 Location: Earth Has thanked: 39 time Have thanks: 61 time
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 .
_________________ Currenlty programming with : java , html , php , and javascript . (OCJP-6 certified )
Janepenelope
Question subject: Re: cookies &rewriting URL
Posted: Wed Apr 22, 2009 7:54 am
Joined: Sat Apr 18, 2009 1:20 pm Posts: 20 Location: UK Has thanked: 0 time Have thanks: 0 time
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.