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.
<VirtualHost *:443>
ServerName server.mydomain.com
RewriteEngine On
RewriteLog "/var/log/apache/rewrite-ssl.log"
RewriteLogLevel 3
RewriteCond %{REQUEST_URI} ^/app/.*
RewriteRule ^/(.*)/([^/]+)$ http://localhost:5050/app/index.jsp?id=$2 [P]
</VirtualHost>
When I type 'server.mydomain.com/app/client1', the rule sends this to
my jboss sever:
http://localhost:5050/app/index.jsp?id=client1
The problem is that it was sending these requests too:
http://localhost:5050/app/index.jsp?id=stylesheet.css
http://localhost:5050/app/index.jsp?id=logo_client1.png
How can I make it stops in the first rewrite (id=client1) ?
Each request is an entirely separate entity to apache httpd. So you
need to find a way to differentiate the requests you wnat forwarded
from the requests you want served locally.
For example, you could add the following:
RewriteCond %{Request_URI} !.*\.(css|png)
or if you are sure that the clientid never contains a period, simply:
RewriteCond %{Request_URI} !\.
Joshua.
---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
" from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]