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

2006-08-09 Thread José Euclides Silva Junior
Sorry, but i have already tried it. The browser returns me : Erro de HTTP 403 - proibido Internet Explorer You can see the directive bellow: ps: www-pddataprev is a DNS hostname...   10.0.134.23:7778>   ServerName www-pddataprev   DocumentRoot /u01/app/oracle/product/oracle10g/Apache/Apache/htdoc

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

2006-08-09 Thread José Euclides Silva Junior
Dear Steve, I ve already tried it, but i got a 404 error(notfound) even if i include a jsp page reference as a Alias command parameter. This is because java environment has their own control! So, i tried to solve it with a redirection META TAG, but the java directory(deqs) is still showed into the

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] Trying to hide application(Java + Apache) directory from browser address bar

2006-08-08 Thread Boyle Owen
> -Original Message- > From: José Euclides Silva Junior [mailto:[EMAIL PROTECTED] > Sent: Tuesday, August 08, 2006 11:24 PM > To: users@httpd.apache.org > Subject: [EMAIL PROTECTED] Trying to hide application(Java + > Apache) directory from browser address bar > > Hi, > i intend to hide

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

2006-08-08 Thread Steve Swift
If you were to add:Alias / "/u01/app/oracle/product/oracle10g/Apache/Apache/htdocs/pddataprev/deqs/"(all on one line) and remove your from index.html then that would have the effect of fetching all documents which appeared to com from the root from its directory "deqs". On 08/08/06, José Euclides