“HTML redirige vers une autre page” Réponses codées

Comment puis-je rediriger vers une autre page 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

Redirection HTML

<!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

Comment rediriger une page vers une autre URL dans HTML

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

Redirection HTML

<!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

Redirection JavaScript

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

HTML redirige vers une autre page

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

Réponses similaires à “HTML redirige vers une autre page”

Questions similaires à “HTML redirige vers une autre page”

Plus de réponses similaires à “HTML redirige vers une autre page” dans HTML

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code