This can be done but goes against the expected browser behaviour; if you click back, you expect to return to the previous page.
With that said, you can take advantage of window.history
to get the required result
var currentTitle = document.title,
currentUrl = window.location.href;
window.history.pushState({questionID: '555'}, "Question 555", "/go-back/here");
window.history.pushState({}, currentTitle, currentUrl);
window.onpopstate = function(){
// handle clicking back here - generally do reload as it will do a proper load of the page
window.location.reload(true);
}
NOTE: you can only pushState
for urls on the same domain (i.e. same website) that you are currently on