RedirectController::urlRedirectAction()

Response urlRedirectAction(Request $request, string $path, bool $permanent = false, string|null $scheme = null, int|null $httpPort = null, int|null $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|null $scheme The URL scheme (null to keep the current one)
int|null $httpPort The HTTP port (null to keep the current one for the same scheme or the configured port in the container)
int|null $httpsPort The HTTPS port (null to keep the current one for the same scheme or the configured port in the container)

Return Value

Response A Response instance

Exceptions

HttpException In case the path is empty
doc_Symfony
2016-10-28 06:28:40
Comments
Leave a Comment

Please login to continue.