Well anyone that has JavaScript turned on will be able to benefit from this:
Window.location.href = 'example.com';
Also, if you were to want to change the page without having it reflect within the browsers back history then you could do this:
Window.location.replace('example.com');
Window.location.href = 'example.com';
Also, if you were to want to change the page without having it reflect within the browsers back history then you could do this:
Window.location.replace('example.com');