RedirectController

class RedirectController

Redirects a request to another URL.

Methods

__construct(UrlGeneratorInterface $router = null, int $httpPort = null, int $httpsPort = null)
redirectAction(Request $request, string $route, bool $permanent = false, bool|array $ignoreAttributes = false)

Redirects to another route with the given name.

urlRedirectAction(Request $request, string $path, bool $permanent = false, string $scheme = null, int $httpPort = null, int $httpsPort = null)

Redirects to a URL.

Details

__construct(UrlGeneratorInterface $router = null, int $httpPort = null, int $httpsPort = null)

Parameters

UrlGeneratorInterface $router
int $httpPort
int $httpsPort

redirectAction(Request $request, string $route, bool $permanent = false, bool|array $ignoreAttributes = false)

Redirects to another route with the given name.

The response status code is 302 if the permanent parameter is false (default), and 301 if the redirection is permanent.

In case the route name is empty, the status code will be 404 when permanent is false and 410 otherwise.

Parameters

Request $request The request instance
string $route The route name to redirect to
bool $permanent Whether the redirection is permanent
bool|array $ignoreAttributes Whether to ignore attributes or an array of attributes to ignore

Exceptions

HttpException In case the route name is empty

urlRedirectAction(Request $request, string $path, bool $permanent = false, string $scheme = null, int $httpPort = null, int $httpsPort = null)

Redirects to a URL.

The response status code is 302 if the permanent parameter is false (default), and 301 if the redirection is permanent.

In case the path is empty, the status code will be 404 when permanent is false and 410 otherwise.

Parameters

Request $request The request instance
string $path The absolute path or URL to redirect to
bool $permanent Whether the redirect is permanent or not
string $scheme The URL scheme (null to keep the current one)
int $httpPort The HTTP port (null to keep the current one for the same scheme or the default configured port)
int $httpsPort The HTTPS port (null to keep the current one for the same scheme or the default configured port)

Exceptions

HttpException In case the path is empty

© 2004–2017 Fabien Potencier
Licensed under the MIT License.
http://api.symfony.com/4.0/Symfony/Bundle/FrameworkBundle/Controller/RedirectController.html