[symfony-users] a question about routing framework :P

2010-04-01 Thread Lee Joseph
as I know routing framework in symfony which separates url information
with slash '/'  or dot '.' like

some_route:
  url:  /:module/:actions/:id


I just want know is there anything I can do to make some Url like
.com/auckland/module-action-id

-- 
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

To unsubscribe, reply using remove me as the subject.


Re: [symfony-users] a question about routing framework :P

2010-04-01 Thread Denis Golovin
Did you try something like this:

some_route:
 url:  /:module-:actions-:id


2010/4/1, Lee Joseph name.liz...@gmail.com:
 as I know routing framework in symfony which separates url information
 with slash '/'  or dot '.' like

 some_route:
   url:  /:module/:actions/:id


 I just want know is there anything I can do to make some Url like
 .com/auckland/module-action-id

 --
 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

 To unsubscribe, reply using remove me as the subject.


-- 
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


Re: [symfony-users] a question about routing framework :P

2010-04-01 Thread Georg Gell
try to put something like this in routing.yml

auckland:
  options: { segment_separators: [/, ., -] }


Am 01.04.2010 08:39, schrieb Lee Joseph:
 as I know routing framework in symfony which separates url information
 with slash '/'  or dot '.' like
 
 some_route:
   url:  /:module/:actions/:id
 
 
 I just want know is there anything I can do to make some Url like
 .com/auckland/module-action-id
 

-- 
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

To unsubscribe, reply using remove me as the subject.