IsaacZ 发表于 2009-4-10 00:40:51

一空间多网站PHP转向代码

一空间多网站PHP转向代码<?php

$arrays=array(
'www.aa.com'=>'aa/index.html',
'www.bb.com'=>'bb/index.html',
'www.cc.com'=>'cc/index.html',
'www.dd.com'=>'dd/index.html',
'127.0.0.1'=>'bbs/index.php',
);
$url = $arrays[$_server['http_host']];
header("location: $url");
?>
页: [1]
查看完整版本: 一空间多网站PHP转向代码