为什么Prestashop没有重定向?

时间:2015-12-22 11:04:28

标签: php redirect prestashop prestashop-1.6

我有一个调用Tools :: redirect($ myurl)函数的模块。 如果我在该函数中调试(文件/classes/Tools.php):

public static function redirect($url, $base_uri = __PS_BASE_URI__, Link $link = null, $headers = null)
{
    if (!$link)
        $link = Context::getContext()->link;

    if (strpos($url, 'http://') === false && strpos($url, 'https://') === false && $link)
    {
        if (strpos($url, $base_uri) === 0)
            $url = substr($url, strlen($base_uri));
        if (strpos($url, 'index.php?controller=') !== false && strpos($url, 'index.php/') == 0)
        {
            $url = substr($url, strlen('index.php?controller='));
            if (Configuration::get('PS_REWRITING_SETTINGS'))
                $url = Tools::strReplaceFirst('&', '?', $url);
        }

        $explode = explode('?', $url);
        // don't use ssl if url is home page
        // used when logout for example
        $use_ssl = !empty($url);
        $url = $link->getPageLink($explode[0], $use_ssl);
        if (isset($explode[1]))
            $url .= '?'.$explode[1];
    }

    // Send additional headers
    if ($headers)
    {
        if (!is_array($headers))
            $headers = array($headers);

        foreach ($headers as $header)
            header($header);
    }
    header('Location: '.$url);
    exit;
}

设置骰子(' test');标题前面的行(" location"),我有我的调试。如果我把我的测试放在header()和exit之间;我还有考试。 到目前为止,一切似乎正常。不过,我在变量中的URL是http://www.example.com/connexion?back=http://www.example.com/1-my-category,我的浏览器显示403禁止页面。如果我在变量中剪切/粘贴URL,它将显示登录表单。那么,为什么标题位置不会将我重定向到页面?我迷路了......

1 个答案:

答案 0 :(得分:0)

解决!如果用户未记录,则403重定向位于CategoryController中。因此,如果用户未登录,我会覆盖控制器重定向到我的登录页面。