Hi,

I had trouble to pass email as get parameter to symfony

http://exampl.org/registration/create/email/myname%40example.org/name/My+Name

Link above do not work because of default rewriting rules which skips
all URL containing dots. I guess the idea here was to bypass all
regular files so I changed following rule

  # we skip all files with .something
  RewriteCond %{REQUEST_URI} \..+$
  RewriteCond %{REQUEST_URI} !\.html$
  RewriteRule .* - [L]

with this one

  # we skip all files with .something
  RewriteCond %{REQUEST_URI} \.\w+$
  RewriteCond %{REQUEST_URI} !\.html$
  RewriteRule .* - [L]

It seems to work but maybe I am missing something. Is it safe?
If it is, you may want to change it.

greetz,
heen


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"symfony developers" 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-devs?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to