Use JavaScript redirects and various other JavaScript navigation techniques to help direct traffic to the right pages on your site.
Send Traffic To A Target Page
The below javascript function will take you to the page you specify; simply replace http://example.com with your web address.
window.location.replace("http://example.com");
Use The Javascript Back Functionality
The below javascript function will take you back to the previous webpage that the user visited.
history.back();