“HTML Redirección a otra página” Código de respuesta

¿Cómo redirigo a otra página web?

// similar behavior as an HTTP redirect
window.location.replace("http://stackoverflow.com");

// similar behavior as clicking on a link
window.location.href = "http://stackoverflow.com";
FloatDev

HTML Redirección

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="refresh" content="0; url=https://website.com">    
<title>Redirect</title>
</head>
<body>
</body>
</html>
Outrageous Okapi

Cómo redirigir una página a otra URL en HTML

<meta http-equiv="Refresh" content="0; url=https://www.w3docs.com" />
Cowardly Cougar

HTML Redirección

<!DOCTYPE html>
<html>
   <head>
      <title>HTML Meta Tag</title>
      <meta http-equiv = "refresh" content = "2; url = https://www.tutorialspoint.com" />
   </head>
   <body>
      <p>Hello HTML5!</p>
   </body>
</html>
Ani

JavaScript Redirect

window.location.href = "http://mywebsite.com/home.html";
Grepper

HTML Redirección a otra página

<script>
  function foo() {
  	window.location.href = url
  }
</script>
Toothless

Respuestas similares a “HTML Redirección a otra página”

Preguntas similares a “HTML Redirección a otra página”

Más respuestas relacionadas con “HTML Redirección a otra página” en HTML

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código