help me redirect site....

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    help me redirect site....

    hello fro tell me how redirect one site to any other site.......

    mean what me fill in index.PHP open my sec site......

    #2
    Originally posted by gsd2149 View Post
    hello fro tell me how redirect one site to any other site.......

    mean what me fill in index.PHP open my sec site......
    PHP Code:
    ......
    ......
    <meta http-equiv="refresh" content="5; URL=http://your.redirection.url.here">
    <!-- NOTE: 5 means five seconds -->
    .....
    .....
    <?php
    //you php code here...
    ?>
    or
    PHP Code:
    <?php
    //some code
    header"refresh:5;url=your.rediraction.url.here" );
    //NOTE: 5 means five seconds
    ?>
    It's better to keep your mouth shut and give the impression that you're stupid, than to open it and remove all doubt.
    ⓣⓗⓔ ⓠⓤⓘⓔⓣⓔⓡ ⓨⓞⓤ ⓑⓔ©ⓞⓜⓔ, ⓣⓗⓔ ⓜⓞⓡⓔ ⓨⓞⓤ ⓐⓡⓔ ⓐⓑⓛⓔ ⓣⓞ ⓗⓔⓐⓡ !
    ιη тнєσяу, тнє ρяα¢тι¢є ιѕ α яєѕυℓт σƒ тнє тнєσяу, вυт ιη ρяα¢тι¢є ιѕ тнє σρρσѕιтє.
    キノgんイノ刀g 4 ア乇ムc乇 ノ丂 レノズ乇 キucズノ刀g 4 √ノ尺gノ刀ノイリ!

    Comment


      #3
      Or to redirect instantly
      PHP Code:
      <?php
      header
      ("Location: http://site.tld");
      exit;
      ?>
      Mobile chat, iphone chat, android chat, chat, rooms http://www.aiochat.com

      Comment


        #4
        thankz both of u....

        Comment

        Working...
        X