Open
Description
Currently for HTML4 browsers, the entire URL besides the hostname is included in the hash. This could be optimised further to just include the relative path to the mother location.
For instance instead of:
http://localhost/products/history.js/demo/#/products/history.js/demo/?state=2
It can become:
http://localhost/products/history.js/demo/#?state=2
or
http://localhost/products/history.js/demo/#./?state=2
Which is a lot leaner.