I have a symfony application (version 1.4). I want to see index page of main module in frontend app when I only type projectname/ but it ignores and shows symfony default project successfully created page. My routing.yml in C:\wamp\www\tr\apps\frontend\config\routing.yml is:
homepage:
url: /
param: { module: main, action: index }
default_index:
url: /:module
param: { action: index }
default:
url: /:module/:action/*
I couldn't find the mistake. Please help.