Re: [EMAIL PROTECTED] help work with Proxy pass option

2006-01-08 Thread senthil kumar
Yea, I found out the file in apache souce code (moduels/mappers/mod_rewrite.c). RewriteRule (.*) http://$1 [P] RewriteRule ^(*.xqy)$ http://localhost:8080/$1 [L,P] What is the meaning  [p] ,[L,p] ? On 1/9/06, senthil kumar <[EMAIL PROTECTED]> wrote: Could you please send link to download mod_r

Re: [EMAIL PROTECTED] help work with Proxy pass option

2006-01-08 Thread senthil kumar
Could you please send link to download mod_rewrite.so/mod_rewrite.[c|h] . I found out mod_rewrite.c & mod_rewrite.h file in html format. Is it right command to compile the mod_rewrite.c file ? ./apxs -c -I/usr/include/libxml2 -i mod_rewrite.c RewriteRule (.*) http://$1 [P] RewriteRule ^(*.xqy)$

Re: [EMAIL PROTECTED] help work with Proxy pass option

2006-01-06 Thread Joshua Slive
On 1/5/06, senthil kumar <[EMAIL PROTECTED]> wrote: > Hi Axel, > > I am not looking for proxy concept, i don't want to configure my browser to > point to my proxy server. > I am looking for gateway concept, I want to communicate external domain > through my gateway apache server. > > Browser <--

Re: [EMAIL PROTECTED] help work with Proxy pass option

2006-01-05 Thread senthil kumar
Hi Axel, I am not looking for proxy concept, i don't want to configure my browser to point to my proxy server. I am looking for gateway concept, I want to communicate external domain through my gateway apache server. Browser <-> My Gateway Apache Server  <-> External domain N

RE: [EMAIL PROTECTED] help work with Proxy pass option

2006-01-05 Thread Axel-Stéphane SMORGRAV
From: senthil kumar [mailto:[EMAIL PROTECTED] Sent: Thursday, January 05, 2006 2:04 PM To: users@httpd.apache.org Subject: Re: [EMAIL PROTECTED] help work with Proxy pass option Hi Axel, Thanks for your response. As you suggest I configured . ProxyPass / http://www.yahoomail.com/ Yes It

Re: [EMAIL PROTECTED] help work with Proxy pass option

2006-01-05 Thread senthil kumar
Hi Axel, Thanks for your response. As you suggest I configured . ProxyPass / http://www.yahoomail.com/ Yes It works fine. when i type http://hostname:8080/ then it redirect to www.yahoomail.com. === == I want to build my apache as gateway server. the end user can assess the external

RE: [EMAIL PROTECTED] help work with Proxy pass option

2006-01-05 Thread Axel-Stéphane SMORGRAV
@httpd.apache.org Subject: [EMAIL PROTECTED] help work with Proxy pass option Hi, Is it possible to redirect all my request to particular domain and get response back to browser Example:: req1 ===> http://hostname:8080/app1 -> It want to be redirect to www.yahoomail.com req2 ===

[EMAIL PROTECTED] help work with Proxy pass option

2006-01-04 Thread senthil kumar
Hi, Is it possible to redirect all my request to  particular domain  and get response back to browser Example:: req1 ===> http://hostname:8080/app1   -> It want to be redirect to www.yahoomail.com req2 ===> http://hostname:8080/app2   -> it want to be redirect to www.yahoomail.co