|
发表于 2012-1-4 09:22:58
|
显示全部楼层
PHP复制代码
if (!function_exists('redirect')) {
function redirect ($uri = '', $method = 'location', $http_response_code = 302) {
if (!preg_match('#^https?://#i', $uri)) {
$uri = site_url ($uri);
}
switch ($method) {
case 'refresh' : header("Refresh:0;url=" . $uri);
break;
default : header("Location: " . $uri, TRUE, $http_response_code);
break;
}
exit;
}
}
复制代码
uri 写成带http://的就直接跳转 否则 去配置文件获取项目路径再跳转 |
|