[users@httpd] Issue on Redirection in Apache

2014-09-04 Thread ayaskanta.praharaj
Hi, My apache is successfully configured with invoking http://192.168.17.165:/cs website My redirection case : 1) Whenever the URL: http://192.168.17.165:/cs/ is invoked (After '/cs/' there would be nothing) it would be changed to

Re: [users@httpd] AJP Errors?

2014-09-04 Thread Rainer Jung
Am 03.09.2014 um 23:23 schrieb Smith, Burton: -Original Message- From: Rainer Jung [mailto:rainer.j...@kippdata.de] Sent: Saturday, August 30, 2014 3:12 AM Am 28.08.2014 um 22:39 schrieb Smith, Burton: -Original Message- From: Rainer Jung [mailto:rainer.j...@kippdata.de]

Re: [users@httpd] Issue on Redirection in Apache

2014-09-04 Thread Rich Bowen
On 09/04/2014 04:25 AM, ayaskanta.praha...@wipro.com wrote: Hi, My apache is successfully configured with invoking http://192.168.17.165:/cs http://192.168.17.165:/cs website My redirection case : 1) Whenever the URL: http://192.168.17.165:/cs/ is invoked (After '/cs/' there

Re: [users@httpd] Understanding Apache Mutex directive.

2014-09-04 Thread dE
On 09/03/14 22:26, Mike Rumph wrote: Hello dE, I can only give you my own interpretation of this document. First of all the Mutex directive in Apache httpd 2.4.x replaces several different directives from Apache httpd 2.2.x. The SVN commit for this is 883540. -

Re: [users@httpd] Understanding Apache Mutex directive.

2014-09-04 Thread Mike Rumph
Hi. I was reading this -- http://httpd.apache.org/docs/trunk/mod/core.html#mutex Before we continue, I would like to clarify another doubt that I have. There's a 'mutex mechanism' and then there's a 'mutex name'. What's the difference? The 'mutex mechanism' is the means by which the

[users@httpd] combining conflicting rewrite rules

2014-09-04 Thread Wei-min Lee
Hello, I have Apache 2.4 in front of Tomcat 6 hosting sites developed with Autonomy. I'm using Apache to proxy ajp as well as rewrite in my vhost config the following ways... RewriteEngine on RewriteRule ^/main/(.*) /$1 [L,R=301] RewriteRule ^/html/main/(.*) /$1 [L,R=301] RewriteRule ^/$

Re: [users@httpd] combining conflicting rewrite rules

2014-09-04 Thread Rich Bowen
On 09/04/2014 04:35 PM, Wei-min Lee wrote: 1 - all requests for .html?$, .aspx?$, etc, should be rewritten as $1.page 2 - exclude /folderx/(.*)\.html?$ from rule 1 That's what RewriteCond is for RewriteCond %{REQUEST_URI} !^/folderx/(.*)\.html?$ RewriteRule Goes Here A RewriteCond (or N

Re: [users@httpd] combining conflicting rewrite rules

2014-09-04 Thread Wei-min Lee
Thanks for the tip. On Thu, Sep 4, 2014 at 1:47 PM, Rich Bowen rbo...@rcbowen.com wrote: On 09/04/2014 04:35 PM, Wei-min Lee wrote: 1 - all requests for .html?$, .aspx?$, etc, should be rewritten as $1.page 2 - exclude /folderx/(.*)\.html?$ from rule 1 That's what RewriteCond is for