ziyouhua 发表于 2017-12-8 21:59:35

请教php代码怎样在html程序里用

有人说下面是一段pr劫持的代码
<?
if (strstr($_SERVER['HTTP_USER_AGENT'], “Googlebot”)) {
header(“HTTP/1.1 301 Moved Permanently”);
header(“Location: http://www.xxx.com”);
exit;
}
else {
header(’Content-Type: text/html; charset=ISO-8859-1′);
};
?>但它是php代码,我的建站程序却是html程序,那怎样用这段php代码,把它放在什么位置?而且我还没有安装php服务器,请大虾赐教

pob777 发表于 2017-12-10 01:13:25

我学jsp的
页: [1]
查看完整版本: 请教php代码怎样在html程序里用