03/11/2007, 03:52
|
| | Fecha de Ingreso: junio-2003 Ubicación: madrid
Mensajes: 342
Antigüedad: 21 años, 6 meses Puntos: 3 | |
Re: Redirección en HTML no conozco una redireccion 301 en html, en php es esta:
<?php
header("HTTP/1.1 301 Moved Permanently");
header("location: http://www.nuevaurl.com/archivo.html");
?>
en html
<html>
<head>
<script language="javascript">
window.location="nuevadireccion.html";
</script>
</head>
</html>
o
<meta http-equiv="refresh"content="10;url=http://www.sitio.com/sitio.asp"> (donde 10 es el tiempo que tarda en redireccionar) |