Access restricted page error 

The handler for access restricted page errors (403 error) will redirect to the configured login page with the original requested url in the return_url parameter. This causes a redirect to this page after successful login. If the requested page is not accessible for the logged in user, because e.g. the user group does not match, the user gets the content of a configured 403 error page.

Site-Configuration ^^^^^^^^^^^^^^^^^^

errorHandling:
  -
    errorCode: 403
    errorHandler: PHP
    errorPhpClassFQCN: T3G\HigherEducationPackage\Handler\Error\AccessRestriction\AccessRestrictedPageErrorHandler
    loginUrl: 't3://page?uid=66'
    fallBackErrorContentSource: 't3://page?uid=135'
Copied!

Handler specific configuration values:

loginUrl

loginUrl
type

string

Contains the link for the page with the login form in typolink format.

fallBackErrorContentSource

fallBackErrorContentSource
type

string

Contains the link for the page with the 403 error page in typolink format.