Your web server is rewriting your URLs to enable session state because you configured your site to not use cookies.
If you look at the file of your site web.config, you will probably find this line:
<sessionState cookieless="true" />
If you change the value to false, if you solve your problem (or just completely delete the line - the default value is false)
.