RE: [users@httpd] Apache 2.4 for windows????

2012-10-04 Thread abhishek
Are those binaries stable and ready for production server use Regards, Abhishek Gupta -Original Message- From: Lester Caine [mailto:les...@lsces.co.uk] Sent: Thursday, October 04, 2012 10:28 AM To: users@httpd.apache.org Subject: Re: [users@httpd] Apache 2.4 for windows

RE: [users@httpd] Apache 2.4 for windows????

2012-10-04 Thread Lester Caine
Are those binaries stable and ready for production server use Hope so - many of us have been using the 64 bit versions for years! Regards, Abhishek Gupta -Original Message- From: Lester Caine [mailto:les...@lsces.co.uk] Sent: Thursday, October 04, 2012 10:28 AM To:

Re: [users@httpd] Content-Length is always 0

2012-10-04 Thread Asaf Dalet
hi guys, sorry for the late response - i left this Apache compilation for a while, but i am trying it again now. I tried to compile apache (2.2.3) again - this time using gcc, but the result is the same. I tried replacing config.guess as described above from AutoMake latest version

[users@httpd] How to strip out the query parameter for specific URLs using mod_rewrite?

2012-10-04 Thread Bhattacharya, Sudip
Hi, I am trying to configure caching for a website using apache proxy. Some of the URLs are using a random parameter in the URL to avoid caching. The URL would look like this: http://foo.com/folder/xmlfiles/static.xml?rand= 0.36176968908944995 The xml files are static files, but the

Re: [users@httpd] How to strip out the query parameter for specific URLs using mod_rewrite?

2012-10-04 Thread sridhar basam
On Thu, Oct 4, 2012 at 11:03 AM, Bhattacharya, Sudip sudip.bhattacha...@genpact.com wrote: Hi, I am trying to configure caching for a website using apache proxy. Some of the URLs are using a random parameter in the URL to avoid caching. The URL would look like this:

RE: [users@httpd] How to strip out the query parameter for specific URLs using mod_rewrite?

2012-10-04 Thread Bhattacharya, Sudip
Hi Sridhar, This would apply to the whole virtual host. I need to enable it for specific subfolders. -Original Message- From: sridhar basam [mailto:sridhar.ba...@gmail.com] Sent: Thursday, October 04, 2012 9:00 PM To: users@httpd.apache.org Subject: Re: [users@httpd] How to strip out

Re: [users@httpd] How to strip out the query parameter for specific URLs using mod_rewrite?

2012-10-04 Thread Ben Johnson
On 10/4/2012 11:32 AM, Bhattacharya, Sudip wrote: Hi Sridhar, This would apply to the whole virtual host. I need to enable it for specific subfolders. Something like this should work: RewriteCond %{REQUEST_URI} =/folder/xmlfiles/static.xml RewriteCond %{QUERY_STRING} != #The ? at the end

RE: [users@httpd] How to strip out the query parameter for specific URLs using mod_rewrite?

2012-10-04 Thread Bhattacharya, Sudip
Great. This one worked. However, it looks like the first request with the query string returns a 301 moved permanently response, requiring another request from the browser to the file without the query string. Can this redirection be avoided, so that the server returns the cached file on the

Re: [users@httpd] How to strip out the query parameter for specific URLs using mod_rewrite?

2012-10-04 Thread Nick Kew
On 4 Oct 2012, at 16:52, Ben Johnson wrote: On 10/4/2012 11:32 AM, Bhattacharya, Sudip wrote: Hi Sridhar, This would apply to the whole virtual host. I need to enable it for specific subfolders. Something like this should work: RewriteCond %{REQUEST_URI}

Re: [users@httpd] How to strip out the query parameter for specific URLs using mod_rewrite?

2012-10-04 Thread Ben Johnson
On 10/4/2012 12:01 PM, Bhattacharya, Sudip wrote: Great. This one worked. However, it looks like the first request with the query string returns a 301 moved permanently response, requiring another request from the browser to the file without the query string. Can this redirection be

RE: [users@httpd] How to strip out the query parameter for specific URLs using mod_rewrite?

2012-10-04 Thread Bhattacharya, Sudip
[PT,L] is not allowing caching. Seems like mod_cache treats it as a dynamic file, because of the query string. I may have to live with the redirection option [R=301,L] unless there are some other alternatives that I can try out. At least mod_cache is able to cache the redirected url as it does

[users@httpd] Mod_rewrite and DirectoryIndex Issue

2012-10-04 Thread Christian Cioni
Hi, in apache 2.2 this configuration in .htaccess file work properly. RewriteEngine On RewriteCond %{REQUEST_URI} !^/folder1 RewriteCond %{REQUEST_URI} !^/folder2 RewriteCond %{REQUEST_URI} !^/folder3 RewriteRule ^(.*)$ folder2/$1 [L] When open

Re: [users@httpd] Mod_rewrite and DirectoryIndex Issue

2012-10-04 Thread Eric Covener
is there anyway you can help isolate this by building mod_rewrite from 2.2 on top of 2.4 and reporting whether it's affected? - To unsubscribe, e-mail: users-unsubscr...@httpd.apache.org For additional commands, e-mail:

[users@httpd] R: Mod_rewrite and DirectoryIndex Issue

2012-10-04 Thread Christian Cioni
In this moment, I must delete/rename all index files, in the DocumeRoot folder, that matching with the core DirectoryIndex directive. -Messaggio originale- Da: Eric Covener [mailto:cove...@gmail.com] Inviato: venerdì 5 ottobre 2012 00:14 A: users@httpd.apache.org Oggetto: Re:

[users@httpd] How to proxy based on user agent?

2012-10-04 Thread Abhishek Gupta
Dear group, I want to run two sites (desktop and mobile version) under same server. I want apache to proxy/redirect to appropriate application server based on user agent (msie/ipad). Currently, only desktop version is running and I am using proxypass directive. Please help. Regards,