-1

我正在尝试从此网址进行规范重定向

www.mysite.com/page.php?id=1&title=aaa

对此:www.mysite.com/1_aaa

我写了这个函数:

function canonicalRedirect($url)
{

    if (strtoupper($_SERVER['REQUEST_METHOD']) == 'GET')
    {
        $canonical = $url;
        if (!preg_match('/'.str_replace('/','\/',$canonical).'/', $_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI']))
        {
            header('HTTP/1.0 301 Moved');
            header('Cache-Control: no-cache');
            header("Location: $canonical");
        }
    }
}

在 page.php 我把这段代码:

canonicalRedirect($url);

从 MySQL 查询中检索 $url 变量。但是,当我尝试运行它时,出现此错误(我使用的是 Firefox):页面未正确重定向

我在想页面是自动重定向的,但我该如何解决这个问题?谢谢

4

2 回答 2

0

该变量$canonicalURL未在您的函数中定义,导致重定向的位置为空

于 2012-12-15T15:03:45.830 回答
-1

最后我设法解决了我的问题。我像这样重写了我的函数:

function canonicalRedirect($url)
{
            //Check that there is not query string in the url
    if(preg_match('/\?/', $_SERVER["REQUEST_URI"])) {
        header('HTTP/1.0 301 Moved');
        header('Cache-Control: no-cache');
        header("Location: $url");
    }   
}

然后在 page.php 代码中我写了这个:

 // code to retrieve the canonical url from MySQL
 // $row is the array with the url data and $canonicalurl is obviously the canonical url


if($_GET['title'] != $row['url_title']) {

  header("HTTP/1.1 301 Moved");
  header('Status: 301 Moved Permanently', true);
  header("Location: ".$canonicalurl."",TRUE,301);
}
else {
}

canonicalRedirect($canonicalurl);

再见!

于 2012-12-18T10:41:26.987 回答