重定向站点中的所有链接以重定向页面

这个问题在这里已经有了答案:

  • 如何在PHP中进行重定向? 27个答案

  • 为此请按照下列步骤操作:

    1.链接是使用目标空白。

    例:

    在新窗口或标签中打开链接:

    <a href="alvinshortener.com/index.php?url=www.google.com" target="_blank">Visit </a>
    

    在index.php里面写:

    <?php
    if(isset($_GET['url'])){
    header("Location: $_GET['url']");
    }
    ?>
    

    也许我可以帮忙。 在ASP.NET中,我们使用AdRotator来重定向页面。 这意味着您可以使用adRotator构建一个类似“hyper-hippo.net”的页面。

    这是一个例子:在ASP.NET中

    $sql = mysql_query("SELECT * FROM sites WHERE sites ='" . $_POST["sitess"] . "'");
    $id = mysql_fetch_array($sql);
    
    <p><a href="ad1.xml" target="_blank">View XML file</a></p>
    

    这是PHP中的另一个例子:

    $ads = array("ad code goes here", "more ad code", "more ad code");
    shuffle($ads);
    print $ads;
    

    这是HTML中的另一个

    <div id="rotator">
        <img class="ad" src="#" />
        <img class="ad" src="#" />
        <img class="ad" src="#" />
        <img class="ad" src="#" />
    </div>
    

    这是JS + HTML中的另一个

    <div id="rotator">
        <img class="ad" src="ad_banner1.png" />
        <img class="ad" src="ad_banner2.png" />
        <img class="ad" src="ad_bannerN.png" />
    </div>
    
    <script type="text/javascript">// Fisher-Yates Algorithm written by Gio Borje <http://www.giocc.com>
    (function() {
        // Get the list of ads on your site
        var ads = document.getElementsByClassName("ad");
    
        // Used for swapping in the algorithm
        var tmp;
    
        // Random index to swap with
        var randomIdx;
    
        // Random sorting algorithm
        for (var i = 0; i < ads.length - 1; i++) {
            randomIdx = i + 1 + Math.floor(Math.random() * (ads.length - i));
            tmp = ads[randomIdx].src;
            ads[randomIdx].src = ads[i].src;
            ads[i].src = tmp;
        }
    }​)();</script>
    

    我希望这个帮助!


    你可以在html头部使用meta标签,就像这样

    <meta http-equiv="refresh" content="0; url=http://example.com/" />
    
    链接地址: http://www.djcxy.com/p/34705.html

    上一篇: Redirect all link in site to redirect page

    下一篇: How to redirect to a different URL