Re: [us...@httpd] ProxyPass work correctly but ReWriteRule has some error

2010-07-04 Thread Tapas Mishra
On Thu, Jul 1, 2010 at 7:28 PM, Tom Evans tevans...@googlemail.com wrote: Look at your configuration again. First, ProxyPass      ProxyPass /olat http://192.168.1.5:8080/olat      ProxyPassReverse /olat http://192.168.1.5:8080/olat This says, when someone requests a URL starting with

Re: [us...@httpd] ProxyPass work correctly but ReWriteRule has some error

2010-07-04 Thread Tapas Mishra
Ok I got all thanks got it. - 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: users-unsubscr...@httpd.apache.org

[us...@httpd] ProxyPass work correctly but ReWriteRule has some error

2010-07-01 Thread Tapas Mishra
I have an application which is accessible on LAN as http://192.168.1.5:8080/olat/ it is a java application my proxy pass rule work correctly for this as follows ProxyPass /olat http://192.168.1.5:8080/olat ProxyPassReverse /olat http://192.168.1.5:8080/olat I am not able to

Re: [us...@httpd] ProxyPass work correctly but ReWriteRule has some error

2010-07-01 Thread Tom Evans
On Thu, Jul 1, 2010 at 7:32 AM, Tapas Mishra mightydre...@gmail.com wrote: I have an application which is accessible on LAN as http://192.168.1.5:8080/olat/ it is a java application my proxy pass rule work correctly for this as follows        ProxyPass /olat http://192.168.1.5:8080/olat  

Re: [us...@httpd] ProxyPass work correctly but ReWriteRule has some error

2010-07-01 Thread Tapas Mishra
Really? You can't see what's wrong there? Yes I am not clear with ReWriteRule. Your rewrite rule says to look for the URLs beginning with '/olat/' and you went to '/olat'. That is how olat works when some one types in browser http://mydomain.com/olat then they get a page

Re: [us...@httpd] ProxyPass work correctly but ReWriteRule has some error

2010-07-01 Thread Tom Evans
Look at your configuration again. First, ProxyPass ProxyPass /olat http://192.168.1.5:8080/olat ProxyPassReverse /olat http://192.168.1.5:8080/olat This says, when someone requests a URL starting with '/olat', proxy to 'http://192.168.1.5:8080/olat' It also says to rewrite some