Skip to content

Instantly share code, notes, and snippets.

@lillyfreitas
Created February 7, 2017 00:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save lillyfreitas/b135986f72bccfdcae4ebe5e7c683160 to your computer and use it in GitHub Desktop.
Save lillyfreitas/b135986f72bccfdcae4ebe5e7c683160 to your computer and use it in GitHub Desktop.
Redirecionar páginas (HTML, JavaScript e PHP)
<!-- HTML -->
<meta http-equiv="refresh" content="0;url=http://url-de-destino.com/">
<!-- JavaScript -->
<script language="javascript">
window.location='http://url-de-destino.com/';
</script>
<!-- PHP -->
<?php header('Location: http://url-de-destino.com/'); ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment