Full Version of www.bangun3.com

Redirect Situs

Ada beberapa cara melakukan Redirect halaman web. antara lain:
1. Meta Refresh
2. Javascript

1. Meta Refresh
Put this code into your page that you want to redirect


    <meta http-equiv="refresh" content="second; URL=other_url">


second = berapa detik halaman ingin dialihkan. Misalnya 2
other_url = Halaman baru yang akan dikunjungi user

Letakkan script tersebut diantara


    <head>

    </head>




Dalam beberapa kasus kadang sebuah browser tidak mau otomatis redirect ke situs yang kita inginkan. Untuk mengatasinya kita tambahkan alamat situs yang ingin dituju. Dengan kata lain orang harus klik link tersebut untuk menuju halaman yang dimaksud.
Berikut contohnya


    <html>
    <head>
    <title>You'll be redirected after 2 seconds</title>
    <meta http-equiv="refresh" content="2; URL=http://bangun3.com">
    </head>

    <body>
    <a href="http://bangun3.com">Klik di sini.</a> bila Anda tidak otomatis pindah ke halaman baru dalam waktu 2 menit
    </body>
    </html>



Jika ingin langsung redirect tanpa jeda waktu ganti content="0;

2. Javascript

Dengan Java script kamu juga bisa membuat halaman yang otomatis redirect ke halaman tertentu. Berikut contohnya

Tanpa jeda waktu


    <html>
    <head>
    <title>You'll be redirected</title>
    <script type="text/javascript">
    <!–
    window.location = "http://bangun3.com"
    //–>
    </script>

    <body>
    If your browser doesn’t automatically redirect,
    please <a href="http://bangun3.com"&gtclick here.</a>
    </body>
    </html>



Dengan jeda waktu


    <html>
    <head>
    <title>You'll be redirected after 2 seconds</title>
    <script type="text/javascript">
    <!–
    window.setTimeout('window.location="http://bangun3.com"; ',2000);
    //–>
    </script>

    <body>
    If your browser doesn't automatically redirect,
    please <a href="http://bangun3.com"&>click here.</a>
    </body>
    </html>




Angka 2000 diartikan milisecond atau dapat diartikan 2 detik. Jika ingin set 10 tinggal mengganti menjadi 10000.

Search site

Photo used under Creative Commons from Jeremy Levine Design  © 2009 All rights reserved by CrewsHack

Create a free website :: Webnode