On Thu, 5 Nov 2009, dziobacz wrote: > Do you have links in your backend application with extension '.php' or > only I have that - for example: > > http://localhost/backend.php/start/index
The first app you build always has a front controller called index.php and the htaccess file is designed to send all requests to it. Since you can only have one file called index.php in the web folder, the next app you build will be named after the app. One way to get around this is to create a subfolder under web and rename the controller index.php. Then you can set no_script_name for that controller and it should then work just like the front-end app. -- --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "symfony users" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/symfony-users?hl=en -~----------~----~----~----~------~----~------~--~---
