Перенаправление на поддомен со всеми путями и параметрами после домена

Как я могу перенаправить пользователя с одной страницы на одну и ту же страницу, но в поддомене?

http://test.com/ to http://subdomain.test.com/

http://test.com/page/page2/123 to http://subdomain.test.com/page/page2/123

https://test.com/catalog?r=44&color=red to https://subdomain.test.com/catalog?r=44&color=red

Поэтому я хочу перенаправить и сохранить все, что присутствует после subdomain.test.com в моем примере. Как мне это сделать?

public function test($request)
    {
        $subdomain = Market::first()->subdomain;
        $domain = $this->get_domain($request);
        $protocol = $this->get_request_protocol($request);

        $to = $protocol . '://' . $subdomain . '.' . $domain; // all path and params?

        return Redirect::to($to);

    }

    private function get_domain($request)
    {
        $parts = explode('.', $request->getHost());
        $i = count($parts)-1;

        return implode('.', [$parts[$i-1], $parts[$i]]);
    }

    private function get_request_protocol($request)
    {
        if ($request->secure()) {
            return 'https';
        }

        return 'http';
    }

2 ответа

Решение

Использовать этот

private function get_back_path($url, $domain, $subdomain)
{
    $parts = parse_url($url);

    $url = $parts['scheme'] . '://' . $subdomain . '.' . $domain;
    if (isset($parts['path'])) {
        $url .= $parts['path'];
    }
    if (isset($parts['query'])) {
        $url .= '?' . $parts['query'];
    }
    if (isset($parts['fragment'])) {
        $url .= $parts['fragment'];
    }

    return $url;
}

Вы можете использовать redirect()->away() как redirect () -> away (' http://example.com/?id=2);

Другие вопросы по тегам