RES: url redirection

2008-03-27 Thread Milanez, Marcus
Hi, I'm not completely sure about what you want, but you can redirect urls according to a given pattern between tomcat instances using jakarta connectors. Is that what you want? You can have further info here http://tomcat.apache.org/connectors-doc/ Yours, Marcus -Mensagem

Re: RES: url redirection

2008-03-27 Thread Melanie Pfefer
Hi, thanks for your reply. what I want is to redirect http://zeus:8085/web/sec:jar:001 to http://zeus:8086/src/web:sec:jar:001 The first one is on apache the 2nd one is on tomcat thanks again --- Milanez, Marcus [EMAIL PROTECTED] wrote: Hi, I'm not completely sure about what

Re: RES: url redirection

2008-03-27 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Melanie, Melanie Pfefer wrote: | thanks for your reply. what I want is to redirect | | http://zeus:8085/web/sec:jar:001 | | to | | | http://zeus:8086/src/web:sec:jar:001 | | The first one is on apache | the 2nd one is on tomcat If you are

Re: RES: url redirection

2008-03-27 Thread ChrisS
: Melanie Pfefer [EMAIL PROTECTED] To: Tomcat Users List users@tomcat.apache.org Sent: Thursday, March 27, 2008 12:31 PM Subject: Re: RES: url redirection Hi, thanks for your reply. what I want is to redirect http://zeus:8085/web/sec:jar:001 to http://zeus:8086/src/web:sec:jar:001

Re: RES: url redirection

2008-03-27 Thread Melanie Pfefer
PROTECTED] To: Tomcat Users List users@tomcat.apache.org Sent: Thursday, March 27, 2008 12:31 PM Subject: Re: RES: url redirection Hi, thanks for your reply. what I want is to redirect http://zeus:8085/web/sec:jar:001 to http://zeus:8086/src/web:sec:jar:001 The first

Re: RES: url redirection

2008-03-27 Thread ChrisS
. Is this what you are trying to do? Chris S - Original Message - From: Melanie Pfefer [EMAIL PROTECTED] To: Tomcat Users List users@tomcat.apache.org Sent: Thursday, March 27, 2008 4:23 PM Subject: Re: RES: url redirection Hello Actually I was able to define a rewrite rule in apache

Re: RES: url redirection

2008-03-27 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Melanie, Melanie Pfefer wrote: | Hello | Actually I was able to define a rewrite rule in | apache: | | RewriteRule ^/(.*web:jar.*) http://zeus:8086/src/$1 | [R=301,L] Aah, mod_rewrite: the chainsaw of httpd configuration. I personally think

Re: RES: url redirection

2008-03-27 Thread Melanie Pfefer
. Is this what you are trying to do? Chris S - Original Message - From: Melanie Pfefer [EMAIL PROTECTED] To: Tomcat Users List users@tomcat.apache.org Sent: Thursday, March 27, 2008 4:23 PM Subject: Re: RES: url redirection Hello Actually I was able to define a rewrite rule

Re: RES: url redirection

2008-03-27 Thread Rainer Jung
Subject: Re: RES: url redirection Hello Actually I was able to define a rewrite rule in apache: RewriteRule ^/(.*web:jar.*) http://zeus:8086/src/$1 [R=301,L] now http://zeus/web:jar:001 redirects to http://zeus:8086/src/web:jar:001 But if I tried to change the flag to P (proxy

Re: RES: url redirection

2008-03-27 Thread ChrisS
PM Subject: Re: RES: url redirection all I want is to redirect from apache to tomcat. That I was able to do using rewrite rule however, I want the redirection to be transparent (no changes in url) so i thought of using P flag. if ur method can do this please share how to do it. thanks