Re: [users@httpd] debug httpd with windbg

2014-08-04 Thread Jeff Trawick
On Sun, Aug 3, 2014 at 11:34 AM, Vadim Blumkin wrote: > Hi, > > > > Is there any way to debug httpd process with Windbg ? > > > > We have Apache installed on Windows x64 OS , when I can see two processes > in the Task Manager . I want to debug the child process because it’s is > actually handles

[users@httpd] Redirect to other server if file/directory does not exists.

2014-08-04 Thread Mimiko
Hello. I want to redirect/proxy all request to other server if file/directory does not exists locally. In apache's help I've found this exmaple: RewriteCond %{REQUEST_URI}/$1 !-U RewriteRule ^/(.*) http://otherserver/$1 [P,L] But it works if file/directory exists, and shows 404 file not found