redirect to file js code example
Example 1: js redirect to relative url
window.location.href = '/path'; //relative to domain
Example 2: js go to page
window.location.href = "http://example.com/new_url";
window.location.href = '/path'; //relative to domain
window.location.href = "http://example.com/new_url";