Rewrite Rule Question

Rewrite Rule Question

am 28.02.2003 12:39:39 von Raman Preet Jaiswal

------_=_NextPart_001_01C2DF1E.141D87F3
Content-Type: text/plain;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable

I need to redirect users to a specific page when I get a request.

This redirection is based on the parameters I get in my request.

For example if I receive a request

www.abc.com?name=3Drama&age=3D27 then I want to redirect this to =
www.abc.com/ rama27

How can this be written in the httpd.conf file as a RewriteRule?

=20

Thanks

Raman.


------_=_NextPart_001_01C2DF1E.141D87F3
Content-Type: text/html;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable



charset=3Diso-8859-1">





I need to redirect users to a specific page =
when  class=3D127123811-28022003>I get a request.


This redirection is based on the parameters 
class=3D127123811-28022003>I
get in my request.


For example if  class=3D127123811-28022003>I=20
receive a request


size=3D2>www.abc.com?name=3Drama&age=3D27  =20
class=3D127123811-28022003> then  class=3D127123811-28022003>I want to redirect this =
to  class=3D127123811-28022003> href=3D"http://www.abc.com/rama27">www.abc.com/rama27=


How can this be written in the httpd.conf file as a=20
RewriteRule?


 


Thanks


Raman.



------_=_NextPart_001_01C2DF1E.141D87F3--

Re: Rewrite Rule Question

am 28.02.2003 12:54:33 von Andrea Rossignoli

------=_NextPart_000_000B_01C2DF28.8ABD68B0
Content-Type: text/plain;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable

Hi,
put these rules inside the DirectoryBlock into your httpd.conf:

RewriteEngine On
RewriteCond %{QUERY_STRING} ^name=3D([a-z]+)&age=3D([0-9]+)$ [NC]
RewriteRule ^$ http://www.mytest.net/%1%2 [NC,R,L]

~Andrea
----- Original Message -----=20
From: Raman Preet Jaiswal=20
To: users@httpd.apache.org=20
Sent: Friday, February 28, 2003 12:39
Subject: [users@httpd] Rewrite Rule Question


I need to redirect users to a specific page when I get a request.

This redirection is based on the parameters I get in my request.

For example if I receive a request

www.abc.com?name=3Drama&age=3D27 then I want to redirect this to =
www.abc.com/rama27

How can this be written in the httpd.conf file as a RewriteRule?



Thanks

Raman.

------=_NextPart_000_000B_01C2DF28.8ABD68B0
Content-Type: text/html;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable



charset=3Diso-8859-1">




Hi,

put these rules inside the DirectoryBlock into =
your=20
httpd.conf:

 

 RewriteEngine On
 RewriteCond =
%{QUERY_STRING}=20
^name=3D([a-z]+)&age=3D([0-9]+)$ [NC]
 RewriteRule ^$ href=3D"http://www.mytest.net/%1%2">http://www.mytest.net/%1 %2=20
[NC,R,L]

~Andrea

style=3D"PADDING-RIGHT: 0px; PADDING-LEFT: 5px; MARGIN-LEFT: 5px; =
BORDER-LEFT: #000000 2px solid; MARGIN-RIGHT: 0px">
----- Original Message -----

style=3D"BACKGROUND: #e4e4e4; FONT: 10pt arial; font-color: =
black">From:=20
href=3D"mailto:rjaiswal@sapient.com">Raman Preet=20
Jaiswal

To: title=3Dusers@httpd.apache.org=20
href=3D"mailto:users@httpd.apache.org">users@httpd.apache.or g
=

Sent: Friday, February 28, 2003 =

12:39

Subject: [users@httpd] Rewrite =
Rule=20
Question




I need to redirect users to a specific page =
when  class=3D127123811-28022003>I get a request.


This redirection is based on the =
parameters  class=3D127123811-28022003>I get in my request.


For example if  class=3D127123811-28022003>I=20
receive a request


=
href=3D"http://www.abc.com?name=3Drama&age=3D27">www.abc .com?name=3Dr=
ama&age=3D27
  class=3D127123811-28022003> then  class=3D127123811-28022003>I want to redirect this =
to  class=3D127123811-28022003> =
href=3D"http://www.abc.com/rama27">www.abc.com/rama27
=


How can this be written in the httpd.conf file as a=20
RewriteRule?


 


Thanks


Raman.



------=_NextPart_000_000B_01C2DF28.8ABD68B0--

RE: Rewrite Rule Question

am 28.02.2003 13:47:09 von Raman Preet Jaiswal

------_=_NextPart_001_01C2DF27.81CFE0D0
Content-Type: text/plain;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable

Hi Andrea,
Thanks for your reply..
But I still have trouble understanding.
Does this condition say "If the Query String has name and age included" =
THEN
"whatever be the query String =
redirect to http://www.mytest/nameandage"
=20
Do I have to escape the %1 and %2? as this isnt working yet?
=20
My actual query string is:
http://www.abcdefg.com/global/crm/RTOImageRedirect?Offer=3D =
o&RTOPos=3D4> l07muranopromo&RTOPos=3D4
and i want to redirect it to http://www.abcdefg.com/m/crm/i/ =
=
crm_l07muranopromo_4.gif=20
=20
and for the same I write
RewriteCond %{QUERY_STRING} ^Offer=3D([a-z]+)&RTOPos=3D([0-9]+)$ [NC]
RewriteRule ^$ http://www.abcdefg.com/m/crm/i/crm_%1_%2.gif [NC,R,L]
=20
Is this correct?
But it aint working yet..:(
=20
Possible?
Thanks.
=20
=20
=20

-----Original Message-----
From: Andrea [mailto:software@polin.it]
Sent: Friday, February 28, 2003 5:25 PM
To: users@httpd.apache.org
Subject: Re: [users@httpd] Rewrite Rule Question


Hi,
put these rules inside the DirectoryBlock into your httpd.conf:
=20
RewriteEngine On
RewriteCond %{QUERY_STRING} ^name=3D([a-z]+)&age=3D([0-9]+)$ [NC]
RewriteRule ^$ http://www.mytest.net/%1%2 [NC,R,L]

~Andrea

----- Original Message -----=20
From: Raman Preet Jaiswal=20
To: users@httpd.apache.org=20
Sent: Friday, February 28, 2003 12:39
Subject: [users@httpd] Rewrite Rule Question


I need to redirect users to a specific page when I get a request.

This redirection is based on the parameters I get in my request.

For example if I receive a request

www.abc.com?name=3Drama =
&age=3D27 then I want to redirect this to www.abc.com/ =
rama27

How can this be written in the httpd.conf file as a RewriteRule?

=20

Thanks

Raman.


------_=_NextPart_001_01C2DF27.81CFE0D0
Content-Type: text/html;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable



charset=3Diso-8859-1">






Hi =
Andrea,

Thanks for your=20
reply..

But I still =
have trouble=20
understanding.

Does this condition =
say "If the=20
Query String has name and age included" THEN

class=3D497394212-28022003>       &nbs=
p;            =
;            =
   =20
"whatever be the query String redirect to href=3D"http://www.mytest/nameandage">http://www.mytest/name andage" FONT>

size=3D2> 

Do I have to =
escape the %1=20
and %2? as this isnt working yet?

size=3D2> 

My actual query =
string=20
is:

href=3D"http://www.abcdefg.com/global/crm/RTOImageRedirect?O ffer=3Dl07mur=
anopromo&RTOPos=3D4">http://www.abcdefg.com/global/crm/R TOImageRedire=
ct?Offer=3Dl07muranopromo&RTOPos=3D4 >

and i want to =
redirect it to href=3D"http://www.abcdefg.com/m/crm/i/crm_l07muranopromo_4. gif">http://w=
ww.abcdefg.com/m/crm/i/crm_l07muranopromo_4.gif=20

size=3D2> 

and for the =
same I=20
write

RewriteCond =
%{QUERY_STRING}=20
^Offer=3D([a-z]+)&RTOPos=3D([0-9]+)$ [NC]
RewriteRule ^$ href=3D"http://www.abcdefg.com/m/crm/i/crm_%1_%2.gif">http:/ /www.abcdefg.=
com/m/crm/i/crm_%1_%2.gif=20
[NC,R,L]

size=3D2> 

Is this=20
correct?

But it aint working =

yet..:(

size=3D2> 

size=3D2>Possible?

size=3D2>Thanks.

size=3D2> 

size=3D2> 

size=3D2> 


face=3DTahoma=20
size=3D2>-----Original Message-----
From: Andrea=20
[mailto:software@polin.it]
Sent: Friday, February 28, 2003 =
5:25=20
PM
To: users@httpd.apache.org
Subject: Re: =
[users@httpd]=20
Rewrite Rule Question


Hi,

put these rules inside the DirectoryBlock =
into your=20
httpd.conf:

 

 RewriteEngine On
 RewriteCond =
%{QUERY_STRING}=20
^name=3D([a-z]+)&age=3D([0-9]+)$ [NC]
 RewriteRule ^$ href=3D"http://www.mytest.net/%1%2">http://www.mytest.net/%1 %2=20
[NC,R,L]

~Andrea

style=3D"PADDING-RIGHT: 0px; PADDING-LEFT: 5px; MARGIN-LEFT: 5px; =
BORDER-LEFT: #000000 2px solid; MARGIN-RIGHT: 0px">
----- Original Message -----

style=3D"BACKGROUND: #e4e4e4; FONT: 10pt arial; font-color: =
black">From:=20
href=3D"mailto:rjaiswal@sapient.com">Raman Preet=20
Jaiswal


Sent: Friday, February 28, =
2003=20
12:39

Subject: [users@httpd] =
Rewrite Rule=20
Question




I need to redirect users to a specific page =
when  class=3D127123811-28022003>I get a request.


This redirection is based on the =
parameters  class=3D127123811-28022003>I get in my request.


For example if  class=3D127123811-28022003>I=20
receive a request


=
href=3D"http://www.abc.com?name=3Drama&age=3D27">www.abc .com?name=3Dr=
ama&age=3D27
  class=3D127123811-28022003> then  class=3D127123811-28022003>I want to redirect this=20
to  =
href=3D"http://www.abc.com/rama27">www.abc.com/
rama27
=


How can this be written in the httpd.conf file as =
a=20
RewriteRule?


 


Thanks


size=3D2>Raman.



------_=_NextPart_001_01C2DF27.81CFE0D0--

Re: Rewrite Rule Question

am 28.02.2003 13:55:12 von Chris Taylor

Change this line:

RewriteCond %{QUERY_STRING} ^Offer=([a-z]+)&RTOPos=([0-9]+)$ [NC]

to

RewriteCond %{QUERY_STRING} ^Offer=([a-z0-9]+)&RTOPos=([0-9]+)$ [NC]

Should work IIRC....

HTH,

Chris Taylor - chris@x-bb.org - The guy with the PS2 WebServer -
http://www.x-bb.org/chris.asc

----- Original Message -----
From: "Raman Preet Jaiswal"
To:
Sent: Friday, February 28, 2003 12:47 PM
Subject: RE: [users@httpd] Rewrite Rule Question


Hi Andrea,
Thanks for your reply..
But I still have trouble understanding.
Does this condition say "If the Query String has name and age included" THEN
"whatever be the query String redirect
to http://www.mytest/nameandage"

Do I have to escape the %1 and %2? as this isnt working yet?

My actual query string is:
http://www.abcdefg.com/global/crm/RTOImageRedirect?Offer=
Pos=4> l07muranopromo&RTOPos=4
and i want to redirect it to http://www.abcdefg.com/m/crm/i/

crm_l07muranopromo_4.gif

and for the same I write
RewriteCond %{QUERY_STRING} ^Offer=([a-z]+)&RTOPos=([0-9]+)$ [NC]
RewriteRule ^$ http://www.abcdefg.com/m/crm/i/crm_%1_%2.gif [NC,R,L]

Is this correct?
But it aint working yet..:(

Possible?
Thanks.




-----Original Message-----
From: Andrea [mailto:software@polin.it]
Sent: Friday, February 28, 2003 5:25 PM
To: users@httpd.apache.org
Subject: Re: [users@httpd] Rewrite Rule Question


Hi,
put these rules inside the DirectoryBlock into your httpd.conf:

RewriteEngine On
RewriteCond %{QUERY_STRING} ^name=([a-z]+)&age=([0-9]+)$ [NC]
RewriteRule ^$ http://www.mytest.net/%1%2 [NC,R,L]

~Andrea

----- Original Message -----
From: Raman Preet Jaiswal
To: users@httpd.apache.org
Sent: Friday, February 28, 2003 12:39
Subject: [users@httpd] Rewrite Rule Question


I need to redirect users to a specific page when I get a request.

This redirection is based on the parameters I get in my request.

For example if I receive a request

www.abc.com?name=rama &age=27 then I
want to redirect this to www.abc.com/ rama27

How can this be written in the httpd.conf file as a RewriteRule?



Thanks

Raman.




------------------------------------------------------------ ---------
The official User-To-User support forum of the Apache HTTP Server Project.
See for more info.
To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
" from the digest: users-digest-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org

Re: Rewrite Rule Question

am 28.02.2003 14:02:12 von Andrea Rossignoli

------=_NextPart_000_004D_01C2DF31.FE0F6AD0
Content-Type: text/plain;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable

Hi,

based on what you stated below:


RewriteEngine On

# If the query sting is "Offer=3Dsomething&RTOPos=3Dother
RewriteCond %{QUERY_STRING} ^Offer=3D(.+)&RTOPos=3D(.+)$ [NC]
# if the uri is "global/crm/RTOImageRedirect" then make an extenal =
redirection
RewriteRule ^global/crm/RTOImageRedirect$ =
http://www.mytest.net/m/crm/i/crm_%1_%2.gif [NC,R,L]

etc


>> Do I have to escape the %1 and %2? as this isnt working yet?
Nope.

~ Andrea
----- Original Message -----=20
From: Raman Preet Jaiswal=20
To: software@polin.it=20
Sent: Friday, February 28, 2003 13:49
Subject: RE: [users@httpd] Rewrite Rule Question


Hi Andrea,
Thanks for your reply..
But I still have trouble understanding.
Does this condition say "If the Query String has name and age =
included" THEN
"whatever be the query String =
redirect to http://www.mytest/nameandage"

Do I have to escape the %1 and %2? as this isnt working yet?

My actual query string is:
=
http://www.abcdefg.com/global/crm/RTOImageRedirect?Offer=3Dl 07muranopromo=
&RTOPos=3D4
and i want to redirect it to =
http://www.abcdefg.com/m/crm/i/crm_l07muranopromo_4.gif=20

and for the same I write
RewriteCond %{QUERY_STRING} ^Offer=3D([a-z]+)&RTOPos=3D([0-9]+)$ [NC]
RewriteRule ^$ http://www.abcdefg.com/m/crm/i/crm_%1_%2.gif [NC,R,L]

Is this correct?
But it aint working yet..:(

Possible?
Thanks.

-----Original Message-----
From: Andrea [mailto:software@polin.it]
Sent: Friday, February 28, 2003 5:25 PM
To: users@httpd.apache.org
Subject: Re: [users@httpd] Rewrite Rule Question


Hi,
put these rules inside the DirectoryBlock into your httpd.conf:

RewriteEngine On
RewriteCond %{QUERY_STRING} ^name=3D([a-z]+)&age=3D([0-9]+)$ [NC]
RewriteRule ^$ http://www.mytest.net/%1%2 [NC,R,L]

~Andrea
----- Original Message -----=20
From: Raman Preet Jaiswal=20
To: users@httpd.apache.org=20
Sent: Friday, February 28, 2003 12:39
Subject: [users@httpd] Rewrite Rule Question


I need to redirect users to a specific page when I get a request.

This redirection is based on the parameters I get in my request.

For example if I receive a request

www.abc.com?name=3Drama&age=3D27 then I want to redirect this to =
www.abc.com/rama27

How can this be written in the httpd.conf file as a RewriteRule?



Thanks

Raman.

------=_NextPart_000_004D_01C2DF31.FE0F6AD0
Content-Type: text/html;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable



charset=3Diso-8859-1">




Hi,

 

based on what you stated below:

 

<Directory =
/path/to/htdocs>
 RewriteEngine=20
On

 

# If the query sting is=20
"Offer=3Dsomething&RTOPos=3Dother

 RewriteCond %{QUERY_STRING} =
^Offer=3D(.+)&RTOPos=3D(.+)$=20
[NC]
# if the uri is =
"global/crm/RTOImageRedirect" then=20
make an extenal redirection

 RewriteRule ^global/crm/RTOImageRedirect$ href=3D"http://www.mytest.net/m/crm/i/crm_%1_%2.gif">http:// www.mytest.ne=
t/m/crm/i/crm_%1_%2.gif=20
[NC,R,L]

  etc

</Directory>

 

>> size=3D2>Do I=20
have to escape the %1 and %2? as this isnt working=20
yet?

class=3D497394212-28022003>Nope.

class=3D497394212-28022003> 

~ Andrea

style=3D"PADDING-RIGHT: 0px; PADDING-LEFT: 5px; MARGIN-LEFT: 5px; =
BORDER-LEFT: #000000 2px solid; MARGIN-RIGHT: 0px">
----- Original Message -----

style=3D"BACKGROUND: #e4e4e4; FONT: 10pt arial; font-color: =
black">From:=20
href=3D"mailto:rjaiswal@sapient.com">Raman Preet=20
Jaiswal


Sent: Friday, February 28, 2003 =

13:49

Subject: RE: [users@httpd] =
Rewrite Rule=20
Question




Hi=20
Andrea,

Thanks for your=20
reply..

But I still =
have trouble=20
understanding.

Does this =
condition say "If=20
the Query String has name and age included" THEN

=
class=3D497394212-28022003>       &nbs=
p;            =
;            =
   =20
"whatever be the query String redirect to =
href=3D"http://www.mytest/nameandage">http://www.mytest/name andage" FONT>

size=3D2> 

Do I have to =
escape the=20
%1 and %2? as this isnt working yet?

size=3D2> 

My actual query =
string=20
is:

=
href=3D"http://www.abcdefg.com/global/crm/RTOImageRedirect?O ffer=3Dl07mur=
anopromo&RTOPos=3D4">http://www.abcdefg.com/global/crm/R TOImageRedire=
ct?Offer=3Dl07muranopromo&RTOPos=3D4 >

and i want to =
redirect it to=20
=
href=3D"http://www.abcdefg.com/m/crm/i/crm_l07muranopromo_4. gif">http://w=
ww.abcdefg.com/m/crm/i/crm_l07muranopromo_4.gif=20

size=3D2> 

and for the =
same I=20
write

RewriteCond =
%{QUERY_STRING}=20
^Offer=3D([a-z]+)&RTOPos=3D([0-9]+)$ [NC]
RewriteRule ^$ =
href=3D"http://www.abcdefg.com/m/crm/i/crm_%1_%2.gif">http:/ /www.abcdefg.=
com/m/crm/i/crm_%1_%2.gif=20
[NC,R,L]

size=3D2> 

Is this=20
correct?

But it aint =
working=20
yet..:(

size=3D2> 

size=3D2>Possible?

size=3D2>Thanks.

size=3D2> 


face=3DTahoma=20
size=3D2>-----Original Message-----
From: Andrea=20
[mailto:software@polin.it]
Sent: Friday, February 28, 2003 =
5:25=20
PM
To: users@httpd.apache.org
Subject: Re: =
[users@httpd]=20
Rewrite Rule Question


Hi,

put these rules inside the DirectoryBlock =
into your=20
httpd.conf:

 

 RewriteEngine On
 RewriteCond=20
%{QUERY_STRING} ^name=3D([a-z]+)&age=3D([0-9]+)$ =
[NC]
 RewriteRule=20
^$ href=3D"http://www.mytest.net/%1%2">http://www.mytest.net/%1 %2=20
[NC,R,L]

~Andrea

style=3D"PADDING-RIGHT: 0px; PADDING-LEFT: 5px; MARGIN-LEFT: 5px; =
BORDER-LEFT: #000000 2px solid; MARGIN-RIGHT: 0px">
----- Original Message ----- =

style=3D"BACKGROUND: #e4e4e4; FONT: 10pt arial; font-color: =
black">From:=20
href=3D"mailto:rjaiswal@sapient.com">Raman=20
Preet Jaiswal


Sent: Friday, February 28, =
2003=20
12:39

Subject: [users@httpd] =
Rewrite Rule=20
Question




I need to redirect users to a specific page=20
when I get a=20
request.


This redirection is based on the =
parameters  class=3D127123811-28022003>I get in my request.


For example if  class=3D127123811-28022003>I receive a request


=
href=3D"http://www.abc.com?name=3Drama&age=3D27">www.abc .com?name=3Dr=
ama&age=3D27
  class=3D127123811-28022003> =
then  class=3D127123811-28022003>I want to redirect this=20
to  =
href=3D"http://www.abc.com/rama27">www.abc.com/
rama27
=


How can this be written in the httpd.conf file =
as a=20
RewriteRule?


 


Thanks


size=3D2>Raman.

BODY>

------=_NextPart_000_004D_01C2DF31.FE0F6AD0--

Re: Rewrite Rule question

am 16.09.2009 02:43:56 von Nick

Hi Jai,
> Is there any restriction in number of characters in rewrite rule?
> Could some one help us to resove this issue?

Don't know the answer to this, or your original problem, but
here's a shot in the dark (not tested my theory)

Couldn't you make an Alias as follows:

Alias
/AuthAgent
/AuthenticateService/Agent/Authenticate/AgentAuthenticationS ervice

This would all be on one line - just indented it for clarity.

Hope that works,
Nick. . .
1(973)614-8385

_/ _/ _/ _/ _/ _/ _/ _/ _/ _/ _/ _/ _/ _/ _/ _/ _/ _/ _/ _/ _/ _/
. . . . . . . .
Please visit my Web Hosting/Design Business at: http://MyHost.org
-=[ The prices are great - as is the service ]=-
. . . . . . . .
...---... (Stamp Out Spam and Save Our Servers) http://sosNow.ws
. . . . . . . .
_/ _/ _/ _/ _/ _/ _/ _/ _/ _/ _/ _/ _/ _/ _/ _/ _/ _/ _/ _/ _/ _/

------------------------------------------------------------ ---------
The official User-To-User support forum of the Apache HTTP Server Project.
See for more info.
To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
" from the digest: users-digest-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org

Re: Re: Rewrite Rule question

am 16.09.2009 18:11:13 von Jayamurugan

--001485f54790d8b2d10473b425b8
Content-Type: text/plain; charset=ISO-8859-1

Thanks to everyone responded to me. This issue has been fixed by adding "$"
symbol on the firest rule. Thanks Bob for your timely help.

On Tue, Sep 15, 2009 at 7:43 PM, wrote:

> Hi Jai,
> > Is there any restriction in number of characters in rewrite rule?
> > Could some one help us to resove this issue?
>
> Don't know the answer to this, or your original problem, but
> here's a shot in the dark (not tested my theory)
>
> Couldn't you make an Alias as follows:
>
> Alias
> /AuthAgent
> /AuthenticateService/Agent/Authenticate/AgentAuthenticationS ervice
>
> This would all be on one line - just indented it for clarity.
>
> Hope that works,
> Nick. . .
> 1(973)614-8385
>
> _/ _/ _/ _/ _/ _/ _/ _/ _/ _/ _/ _/ _/ _/ _/ _/ _/ _/ _/ _/ _/ _/
> . . . . . . . .
> Please visit my Web Hosting/Design Business at: http://MyHost.org
> -=[ The prices are great - as is the service ]=-
> . . . . . . . .
> ...---... (Stamp Out Spam and Save Our Servers) http://sosNow.ws
> . . . . . . . .
> _/ _/ _/ _/ _/ _/ _/ _/ _/ _/ _/ _/ _/ _/ _/ _/ _/ _/ _/ _/ _/ _/
>
>
> ------------------------------------------------------------ ---------
> The official User-To-User support forum of the Apache HTTP Server Project.
> See for more info.
> To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
> " from the digest: users-digest-unsubscribe@httpd.apache.org
> For additional commands, e-mail: users-help@httpd.apache.org
>
>

--001485f54790d8b2d10473b425b8
Content-Type: text/html; charset=ISO-8859-1
Content-Transfer-Encoding: quoted-printable

Thanks to everyone responded to me. This issue has been fixed by adding &qu=
ot;$" symbol on the firest rule. Thanks Bob for your timely help.
<=
br>

On Tue, Sep 15, 2009 at 7:43 PM, r"><> wrot=
e:

px 0px 0.8ex; BORDER-LEFT: #ccc 1px solid">=A0Hi Jai,=20

=A0 > Is there any restriction in number of charac=
ters in rewrite rule?

=A0 > Could some one help us to resove this issue?
=

=A0 =A0 =A0 Don't know the answer to this, or your original p=
roblem, but
=A0here's a shot in the dark (not tested my theory)
<=
br>=A0Couldn't you make an Alias as follows:


=A0Alias
=A0 =A0/AuthAgent
=A0 =A0 =A0 /AuthenticateService/Agent=
/Authenticate/AgentAuthenticationService

=A0This would all be on one=
line - just indented it for clarity.

=A0 =A0 =A0 =A0 =A0 =A0 =A0 =
=A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0Hope that works,

=A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0=
=A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0Nick. . .
=A0 =A0 =A0 =A0 =A0 =A0 =A0 =
=A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0=
=A01(973)614-8385

=A0 _/ _/ _/ _/ _/ _/ _/ _/ _/ _/ _/ _/ _/ _/ _/ =
_/ _/ _/ _/ _/ _/ _/
=A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0. =
=A0. =A0. =A0. =A0. =A0. =A0. =A0.

=A0 Please visit my Web Hosting/Design Business at: t.org/" target=3D"_blank">http://MyHost.org
=A0 =A0 =A0 =A0 =A0-=3D[=
=A0The prices are great - as is the service =A0]=3D-
=A0 =A0 =A0 =A0 =
=A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0. =A0. =A0. =A0. =A0. =A0. =A0. =A0.

=A0 ...---... (Stamp Out Spam and Save Our Servers) =A0 snow.ws/" target=3D"_blank">http://sosNow.ws
=A0 =A0 =A0 =A0 =A0 =A0=
=A0 =A0 =A0 =A0 =A0 =A0. =A0. =A0. =A0. =A0. =A0. =A0. =A0.
=A0 _/ _/ _=
/ _/ _/ _/ _/ _/ _/ _/ _/ _/ _/ _/ _/ _/ _/ _/ _/ _/ _/ _/=20




-------------------------------------------------=
--------------------
The official User-To-User support forum of the Apac=
he HTTP Server Project.
See <URL: serslist.html" target=3D"_blank">http://httpd.apache.org/userslist.html=
> for more info.

To unsubscribe, e-mail: g" target=3D"_blank">users-unsubscribe@httpd.apache.org
=A0" =
=A0 from the digest: e.org" target=3D"_blank">users-digest-unsubscribe@httpd.apache.org

For additional commands, e-mail: org" target=3D"_blank">users-help@httpd.apache.org

<=
/blockquote>



--001485f54790d8b2d10473b425b8--