admin 发表于 2008-8-18 01:58:35

301转向代码 永久定向 域名代Pagerank

301转向代码 永久定向 域名代Pagerank<?php
header('HTTP/1.1 301 Moved Permanently');
header('Location: '.$url);

// perform calculations here,
// i.e.
//   open database connection
//   lookup of $url entry
//   if it exists add 1 to its count
//   if it does NOT exist create entry and add 1 to it's count
//   close database

exit;
?>
页: [1]
查看完整版本: 301转向代码 永久定向 域名代Pagerank