Vixual / 122 posts / tags / 62 comments / feed / comments feed /
Search:

Archive for 11月, 2005


搜尋引摯

  • 搜尋引摯首頁 進階搜尋 網址登錄
  • 圖片搜尋 最先進的網路圖片搜尋工具
  • 網上論壇 建立郵寄清單和討論群組
  • 新聞 建立您自己自訂的 Google 新聞
  • Blog 搜尋 Find blogs on your favorite topics (Beta)
  • 個人化搜尋 取得與您最相關的搜尋結果
  • Google 快訊 透過電子郵件接收新聞和搜尋結果
  • Google Answers 提出問題,設定價格,取得答案
  • Co-op 自定你要的搜尋引摯
  • 網站管理

  • 網站管理員工具
  • Analytics 網站流量統計
  • 網站應用服務 GMail for your doamin
  • AdSense 廣告輪播 Discover your site’s full revenue potential
  • 網路服務

  • Google 網上論壇 (Beta)
  • Picasa Web Albums (Test)
  • Google Spreadsheets 線上電子試算表 (Beta)
  • GMail Google 在電子郵件上的革新 (開放申請)
  • orkut 與可靠的朋友所建立的社群聯繫
  • 免費網頁空間 Create your own web pages, quickly and easily (Beta)
  • 個人化首頁 其它模組
  • Google Moon
  • Google Mars
  • Blogger 現在就建立您的 Blog
  • Google Talk Web 版 Beta
  • Froogle 購物清單 利用您的喜愛產品之願望清單,做出明智的購物選擇
  • More Google Products…
  • 商業

  • Google AdWords 尋找正在搜尋您銷售產品的消費者
  • 軟體

  • Google Pack - 實用軟體集合 Beta
  • Picasa - 相片管理軟體
  • Desktop Beta
  • ToolBar
  • Google Talk Web 版 Beta
  • Google Earth Beta
  • Google Web Accelerator Beta
  • 程式開發

  • Web Toolkit
  • Google 網頁 API 提供給軟體開發人員自動查詢 Google 的工具
  • Gadgets Add Gadgets
  • HTML

    <head>
    <meta http-equiv=refresh content="0;url=http://host.domain.tld/path/to/">
    </head>

    JavaScript

    <script language="JavaScript">
    <!--
      window.location.href = "http://host.domain.tld/path/to/";
    //-->
    </script>

    PHP

    <?php
      header("Location: http://host.domain.tld/path/to/");
    ?>

    (轉址前不可有任何資料輸出)

    Perl

    #!/usr/bin/perl -w
    print "Location: http://host.domain.tld/path/to/ \n\n";

    (轉址前不可有任何資料輸出)

    Perl - 使用 CGI 模組

    #!/usr/bin/perl -w
    use CGI qw/:standard/;
    my $CGI = CGI->new();
    print $CGI->redirect("http://host.domain.tld/path/to/");

    (轉址前不可有任何資料輸出)