Переадресация

1. Виталий (09.10.2010 / 17:32)
плиз, подскажите как мне сделать переадресацию с одного сайта на другой? smile

2. Lugaro (09.10.2010 / 17:34)
header('Location: http://visavi.net');

3. Виталий (09.10.2010 / 17:35)
спасибо smile

4. Андрей (09.10.2010 / 19:54)
JavaScript:
<script type="text/javascript">
document.location.href="http://visavi.net";
</script>
.htaccess:
RewriteCond %{HTTP_HOST} ^domain.ru$ [NC]
RewriteCond %{REQUEST_FILENAME} ^(.*?)$ [NC]
RewriteRule ^(.*?) http://visavi.net$1%2 [L]

5. Bogdan Bogdanov (09.10.2010 / 21:22)
HTML:
<html>
  <head>
    <meta http-equiv="refresh" content="5; url=http://site.ru">
    <!-- 5 - Время в секундах. -->
  </head>
  <body>
  </body>
</html>
PHP:
header("Location: http://site.ru");
JS:
<script language="JavaScript"> 
  window.location.href = "http://site.ru"
</script>


URL: https://visavi.net/topics/14489