Re: Sample normalize

2007-09-13 Thread Carl Cerecke
Smith Norton wrote: In the regex-normalize.xml the following code is present. (\?|\&|\&)PHPSESSID=[a-zA-Z0-9]{32}(\&|\&)(.*) $1$3 Could anyone please explain me with an example, what type of URL it is normalizing to what? I'm pretty sure the $1 means the first matched group in

Re: Sample normalize

2007-09-13 Thread Marcin Okraszewski
It will simply remove PHPSESSIONID from URL. For instance: http://example.org/page.html?param1=1&PHPSESSIONID=ABCFEF¶m2=2 will be changed to http://example.org/page.html?param1=1¶m2=2 Marcin > In the regex-normalize.xml the following code is present. > > > > (\?|\&|\&)PHPSESSID=[a-zA-

Sample normalize

2007-09-13 Thread Smith Norton
In the regex-normalize.xml the following code is present. (\?|\&|\&)PHPSESSID=[a-zA-Z0-9]{32}(\&|\&)(.*) $1$3 Could anyone please explain me with an example, what type of URL it is normalizing to what?