Join Brand New Web 2.0 Social Network For Marketers and Win $6,700 Prize
Powered by MaxBlogPress  

How to Redirect to New Page using html, php, asp and javascript

If you're new here, check out tips and trick, free stuff in here, software, ebook, and discount voucher, you may want to subscribe to my RSS feed, so you miss it. Thanks for visiting!

Why do you need to redirect your page? everyone have their own reason, My reason are to redirect to new page is to hide affiliate links and to make it more professional and allow user to redirect to a new page while my current page is not available without having user click continue or seeing 404 error page. You can create redirection page using:

  • HTML: use meta HTTP-EQUIV
    copy the meta code below between head html tags like sample below

    <head>

    <meta HTTP-EQUIV=”REFRESH” content=”0; url=http://www.yourwebsite.com/newpage.html”>

    </head>

    The above HTML code will redirect your user to new web page, and also you can change set the wait time before it redirect into the new page by changing the value of content=”0;

  • PHP using header function
    in you php file such as redirect.php put the following code

    <?php
    header( ‘Location: http://www.youraffiliate.com/index.html’ ) ;
    ?>

    make sure that you did not put any html code in php file as this usually generate error.

  • ASP using Respond.Redirect
    in your asp file paste the following code

    <% Response.Redirect(”/yournewpage.asp”) %>

  • Javascript using window.location
    place this code between head tag

    <head>
    <script language=”JavaScript”>
    window.location=” http://www.youraffiliate.com/index.html”;
    </script>
    </head>

Popularity: 8% [?]

Stumble it!
You liked it ? Hated it ? You've got additional information and links ? Bring more life here, participate, add a comment ;-)
Free online Health Assessment

Related Posts

  • How to make 301 redirects
  • Page Rank With or Without www and How to Redirect it
  • How to Prevent Email Harvesting
  • Build A Niche Store (BANS) Version 2 Release
  • Internet Business Web Contest Win over $7,695 in Cash and Free Prizes

  • Interesting Post

    1 comment

    1. MyAvatars 0.2

      gabes Sep 20

      Thank you!
      It is very useful.

    Leave a reply

    Verification Image

    Please type the letters you see in the picture.