As most symfonians, I have a backend (be) controller where admins can login to administer apps for a site. The problem I am having is the login form is not respecting the backend (be) controller. For example:
<form action="/guard/login" method="post">
Should be:
<form action="be.php/guard/login" method="post">
So everytime I submit the form it keeps throwing an error. The weird thing is, it works for be_dev.php.
Thanks in advance.