При переходе по URL login у меня не грузит страницу и браузер выдает ошибку ERR_TO_MANY REDIRECTS
Я настроил аутентификацию:
firewalls:
dev:
pattern: ^/(_(profiler|wdt)|css|images|js)/
security: false
main:
anonymous: lazy
provider: app_user_provider
form_login:
check_path: loginAction
login_path: loginAction
logout:
path: /logout
target: loginAction
# guard:
# authenticators:
# - App\Security\ClearAuthenticator
# activate different ways to authenticate
# https://symfony.com/doc/current/security.html#firewalls-authentication
# https://symfony.com/doc/current/security/impersonating_user.html
# switch_user: true
# Easy way to control access for large sections of your site
# Note: Only the *first* access control that matches will be used
access_control:
# - { path: ^/admin, roles: ROLE_ADMIN }
# - { path: ^/profile, roles: ROLE_USER }
- { path: ^/login, roles: IS_AUTHENTICATED_ANONYMOUSLY }
- { path: ^/admin, roles: ROLE_ADMIN }
Я дал доступ в access_control для анонимных пользователей но все же почему происходи цикл переадресаций?