hey fellas,
I have a site built in symfony.
However, I'm putting some routing rules :
resgister:
url: /register
param: { module: register, action: index }
and I put a link :
link_to('register - here','register')
but this link points to http://www.mydomain.com/register instead of http://www.mydomain.com/index.php/register
so I get an 404 error.
this problem occours only on production env, and not on development env.
any ideas ?
thanks!