0

I have 3 applications in my Symfony Project :

  • one public app not secured
  • and two other app are secured(app1 & app2) with two diffrent credentials.

I'want when i'm connected on app1 and i taped the url of app2 insted of bolcking me and tell me that i don't have the right credentials redirect me to the app1 that i'm connected

Haithem Rihane
  • 394
  • 2
  • 5
  • 15

1 Answers1

0

I had the same problem and took a look to the filter chain of symfony: 06-Inside-the-Controller-Layer.

If you are using security filter you might have to extend it or implement one on your own.

hope this helps.

Del Pedro
  • 1,216
  • 12
  • 32
  • do share some steps of the solution, it is likely to give a clearer picture to the less informed – Prasad May 02 '12 at 06:37