Hi,
I have a problem with a regex to verify an URL.
I use this acl :
acl sign path_reg /signature/state?status=[a-zA-Z0-9]*$
I have a problem with the caracter “?” when I try (http://try.org/signature/state?status=666), the ACL is not accepted.
For test, I try
acl sign path_reg /signature/state.status=[a-zA-Z0-9]*$
URL : http://try.org/signature/state*status=666 => ACL OK => go to the backend
URL : http://try.org/signature/state?status=666 => ACL KO
Do you know how I can resolve this problem ?
Thanks in advance.
Regards