window.location = 'https://webship.com.br/pagina.php';
// ou:
location.href = 'https://webship.com.br/pagina.php';
// voltar a pagina anterior
window.location.href = 'javascript:history.back()';
//com time
setTimeout("document.location = 'https://webship.com.br/pagina.php'", 3000);
window.setTimeout(function() {
window.location = 'https://webship.com.br/pagina.php';
}, 4500);
/**
* recarrega o documento atual
* o método reload() faz o mesmo que o botão recarregar dos navegadores */
javascript:location.reload();
Comente no