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