PHP只重定向根域

时间:2014-03-10 00:44:17

标签: php cakephp redirect url-redirection

我需要一个PHP代码,将我的索引页面重定向到另一个站点非常快 这样的事情,但问题是:这段代码重定向所有页面

 <?php    
  header('Status: 301 Moved Permanently', false, 301);      
  header( 'Location: http://www.fastfreesurfing.cf/' ) ;      
  exit();      
?>

1 个答案:

答案 0 :(得分:2)

这样做:

if ($_SERVER['REQUEST_URI'] == '/' || strtolower($_SERVER['REQUEST_URI']) == '/index.php') {
    header('Status: 301 Moved Permanently', false, 301);      
    header( 'Location: http://www.fastfreesurfing.cf/' ) ;      
    exit();
}