Re: [us...@httpd] Query string encoding

2009-04-09 Thread Clodoaldo Pinto Neto
2009/4/8 Igor Cicimov : > Just an idea ... have you tried putting the hexadecimal representation of > the "+" symbol so apache translates it into "+" when encoding? I want all the urls to be human readable. Regards, Clodoaldo > > On Wed, Apr 8, 2009 at 11:19 PM, Clodoaldo Pinto Neto > wrote: >>

Re: [us...@httpd] Query string encoding

2009-04-08 Thread Igor Cicimov
Just an idea ... have you tried putting the hexadecimal representation of the "+" symbol so apache translates it into "+" when encoding? On Wed, Apr 8, 2009 at 11:19 PM, Clodoaldo Pinto Neto < clodoaldo.pi...@gmail.com> wrote: > 2009/4/7 Clodoaldo Pinto Neto : > > 2009/4/3 André Warnier : > >> Cl

Re: [us...@httpd] Query string encoding

2009-04-08 Thread Clodoaldo Pinto Neto
2009/4/7 Clodoaldo Pinto Neto : > 2009/4/3 André Warnier : >> Clodoaldo Pinto Neto wrote: >>> >>> I want to rewrite a url to a query string like this: >>> >>> from http://example.com/x+ to http://example.com/var=x%2B >>> or >>> from http://example.com/x%2B to http://example.com/var=x%2B >>> >>> Usi

Re: [us...@httpd] Query string encoding

2009-04-07 Thread Clodoaldo Pinto Neto
2009/4/3 André Warnier : > Clodoaldo Pinto Neto wrote: >> >> I want to rewrite a url to a query string like this: >> >> from http://example.com/x+ to http://example.com/var=x%2B >> or >> from http://example.com/x%2B to http://example.com/var=x%2B >> >> Using: >> RewriteRule ^(/([\w-()+]+))?/$ /?var

Re: [us...@httpd] Query string encoding

2009-04-03 Thread Jonathan Zuckerman
On Fri, Apr 3, 2009 at 9:15 AM, André Warnier wrote: > Clodoaldo Pinto Neto wrote: >> >> I want to rewrite a url to a query string like this: >> >> from http://example.com/x+ to http://example.com/var=x%2B >> or >> from http://example.com/x%2B to http://example.com/var=x%2B >> >> Using: >> Rewrite

Re: [us...@httpd] Query string encoding

2009-04-03 Thread André Warnier
Clodoaldo Pinto Neto wrote: I want to rewrite a url to a query string like this: from http://example.com/x+ to http://example.com/var=x%2B or from http://example.com/x%2B to http://example.com/var=x%2B Using: RewriteRule ^(/([\w-()+]+))?/$ /?var=$2 [QSA] The problem i have is that the query st

[us...@httpd] Query string encoding

2009-04-03 Thread Clodoaldo Pinto Neto
I want to rewrite a url to a query string like this: from http://example.com/x+ to http://example.com/var=x%2B or from http://example.com/x%2B to http://example.com/var=x%2B Using: RewriteRule ^(/([\w-()+]+))?/$ /?var=$2 [QSA] The problem i have is that the query string is passed to the applicat