Hi, I have this routing file: # You can find more information about this file on the symfony website: # http://www.symfony-project.org/reference/1_4/en/10-Routing
# default rules homepage: url: / param: { module: campaign, action: index } # generic rules # please, remove them by adding more specific rules default_index: url: /:module param: { action: index } default: url: /:module/:action/* So, If in my browser I type (1) http://www.mydomain.com.localhost/web/campaign I have returned 404Error. If I type (2) http://www.mydomain.com.localhost/web/index.php/campaign it works. How can I correct this problem, and make the (1) URL working? Thank you so much. PS: Sorry but I am a newbie of symfony! -- If you want to report a vulnerability issue on symfony, please send it to security at symfony-project.com You received this message because you are subscribed to the Google Groups "symfony users" group. To post to this group, send email to symfony-users@googlegroups.com To unsubscribe from this group, send email to symfony-users+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/symfony-users?hl=en