My application largely depends on request.args(0), which holds the id of a node. When visitors don't change the id in the url this works well, however, when a visitor changes the url, the applications' behaviour becomes unpredictable.
I think I can solve this problem by comparing the responding arg with request.args(0), when it differs I only have to redirect to a router function to make the application's behaviour predictable. What is the best way to implement this, are there better ways to solve this problem? Kind regards, Annet --

