Re: [EMAIL PROTECTED] POST Method on Redirect (mod_rewrite) [SOLVED]

2007-07-12 Thread SOPRO
Owen, Understood. I'll have to change our load-balance method. Thanks so much. Fabricio. 2007/7/12, Boyle Owen <[EMAIL PROTECTED]>: > -Original Message- > From: SOPRO [mailto:[EMAIL PROTECTED] > Sent: Thursday, July 12, 2007 5:53 PM > To: users@httpd.apache.or

Re: [EMAIL PROTECTED] POST Method on Redirect (mod_rewrite)

2007-07-12 Thread SOPRO
Nick Kew <[EMAIL PROTECTED]>: On Thu, 12 Jul 2007 11:29:57 -0300 SOPRO <[EMAIL PROTECTED]> wrote: > Hi all, > > I have the following scenario in my httpd.conf file: > > > ServerName myapp.domain.com > RewriteEngine On > RewriteCond %{H

[EMAIL PROTECTED] POST Method on Redirect (mod_rewrite)

2007-07-12 Thread SOPRO
Hi all, I have the following scenario in my httpd.conf file: ServerName myapp.domain.com RewriteEngine On RewriteCond %{HTTPS} !=on RewriteRule ^/(.*) https://secure.domain.com/myapp/$1 [L,R,NC] My clients must submit a form (POST method) to "myapp.domain.com", but when r

[EMAIL PROTECTED] Rewrite Issue only with IE

2007-02-01 Thread SOPRO
Hi all! I'm having problems with the RewriteRule below only with IE (Firefox works fine!). I'm not posting the rewrite.log here because it shows the same thing when I use IE or Firefox. In a Google search, a guy said that IE hangs on some URL redirects (code 302). Do you have any idea to solve t

[EMAIL PROTECTED] Rewrite Issue only with IE

2007-01-31 Thread SOPRO
Hi all! I'm having problems with the RewriteRule below only with IE (Firefox works fine!). I'm not posting the rewrite.log here because it shows the same thing when I use IE or Firefox. In a Google search, a guy said that IE hangs on some URL redirects (code 302). Do you have any idea to solve t

Re: [EMAIL PROTECTED] rotatelogs and gzip

2006-08-10 Thread SOPRO
Hi Marc, I use logrotate and it's work fine for me... :-) I created a separate file for apache: /etc/logrote.d/apache /var/log/apache/access_log /var/log/apache/error_log /var/log/apache/ssl_engine_log /var/log/apache/ssl_request_log { postrotate /usr/sbin/apachectl graceful endscri

Re: [EMAIL PROTECTED] Httpd.conf configuration problem

2006-08-10 Thread SOPRO
Gannarapu, I guess you have a odd slash after 'm'. Try this: %{REQUEST_URI} !~ m\/abc\/qwert/ Fabricio. 2006/8/10, Boyle Owen <[EMAIL PROTECTED]>: > -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] > Sent: Thursday, August 10, 2006 9:14 AM > To: users@httpd.a

Re: [EMAIL PROTECTED] Re: Trying to hide application(Java + Apache) directory from browser address bar

2006-08-09 Thread SOPRO
José, At first, you must discover in which port your OC4J is running and then, what's the nome of the context of your application. Hint: Try to access the application directly one the OC4J. Fabricio. 2006/8/9, José Euclides Silva Junior <[EMAIL PROTECTED]>: I had tried it: the browser showed

Re: [EMAIL PROTECTED] Trying to hide application(Java + Apache) directory from browser address bar

2006-08-09 Thread SOPRO
José, For example, if your OC4J are listen on port 8080, you can use mod_rewrite with proxy and remove your index.html with that Refresh. ie: You can use something like this: RewriteEngine On RewriteRule ^(.*) http://localhost:8080/deqs [P,L] Using Rewrite with [P] option, will not rewrite the

Re: [EMAIL PROTECTED] Rewrite - Almost there !

2006-08-07 Thread SOPRO
http://localhost:5050/app/$1 [P] end Regards, Fabricio. 2006/8/7, Joshua Slive <[EMAIL PROTECTED]>: On 8/7/06, SOPRO <[EMAIL PROTECTED]> wrote: > Joshua, > > Thanks so much ! > I used the option "!\." and it works ... :-) > However, the files '

Re: [EMAIL PROTECTED] Rewrite - Almost there !

2006-08-07 Thread SOPRO
Thanks! Fabricio. 2006/8/7, Joshua Slive <[EMAIL PROTECTED]>: On 8/7/06, SOPRO <[EMAIL PROTECTED]> wrote: > Hi friends, > > I'm trying to write a rule, that takes the client id and pass to an > application hosted on a jboss server. > > > ServerName server.m

[EMAIL PROTECTED] Rewrite - Almost there !

2006-08-07 Thread SOPRO
Hi friends, I'm trying to write a rule, that takes the client id and pass to an application hosted on a jboss server. ServerName server.mydomain.com RewriteEngine On RewriteLog "/var/log/apache/rewrite-ssl.log" RewriteLogLevel 3 RewriteCond %{REQUEST_URI} ^/app/.* RewriteRule

Re: [EMAIL PROTECTED] mod_rewrite issue [SOLVED]

2006-08-04 Thread SOPRO
Hi friends, I solved the problem, modifying the RewrieteRule to: RewriteRule ^/(.*) http://localhost:8080/app/index.do?id=%1 Thanks ! Fabricio. 2006/8/4, SOPRO <[EMAIL PROTECTED]>: Hi Krist, As you sugested, I used LiveHTTPHeaders plugin and I go

Re: [EMAIL PROTECTED] mod_rewrite issue

2006-08-04 Thread SOPRO
-- Can you help me to understand it ? :-) Thanks! Fabricio. 2006/8/2, Krist van Besien <[EMAIL PROTECTED]>: On 8/1/06, SOPRO <[EMAIL PROTECTED]> wrote: > Hi friends! > > I have an aplication hosted on a JBOSS server that must receiv

[EMAIL PROTECTED] mod_rewrite issue

2006-08-01 Thread SOPRO
Hi friends! I have an aplication hosted on a JBOSS server that must receive an id as argument. This id will make the application load the correct template for the typed URL. Eg.: For URL 'client1.app.mydomain.com', the application will load the template for 'client1'. I trying to do something l