Re: [us...@httpd] Re: Redirecting / to non slash

2010-05-18 Thread Nilesh Govindarajan
On 05/18/2010 11:17 AM, Igor Cicimov wrote: Don't forget to switch the rewrite engine on first though: RewriteEngine On RewriteRule (.*)/foo/$ $1/foo [R=301,L] On Tue, May 18, 2010 at 3:45 PM, Igor Cicimov icici...@gmail.com mailto:icici...@gmail.com wrote: Anything wrong with just simple

Re: [us...@httpd] Re: Redirecting / to non slash

2010-05-18 Thread Igor Cicimov
Dude, you really want everything serve on a plate :) RewriteRule (.*)/(.*)/$ $1/$2 [R=301,L] or even better RewriteRule (.*)/$ $1 [R=301,L] On Tue, May 18, 2010 at 4:37 PM, Nilesh Govindarajan li...@itech7.comwrote: On 05/18/2010 11:17 AM, Igor Cicimov wrote: Don't forget to switch the

Re: [us...@httpd] Re: Redirecting / to non slash

2010-05-18 Thread Nilesh Govindarajan
On 05/18/2010 12:25 PM, Igor Cicimov wrote: Dude, you really want everything serve on a plate :) RewriteRule (.*)/(.*)/$ $1/$2 [R=301,L] or even better RewriteRule (.*)/$ $1 [R=301,L] On Tue, May 18, 2010 at 4:37 PM, Nilesh Govindarajan li...@itech7.com mailto:li...@itech7.com wrote:

[us...@httpd] About configure Reverse Proxy

2010-05-18 Thread simon
hi, I configured reverse proxy like this: Proxy balancer://resource-lists BalancerMember http://192.168.1.1/services/resource-lists /Proxy Location /services/resource-lists AuthType Digest AuthName test.com AuthDigestProvider dbd AuthDigestQop auth

Re: [us...@httpd] About configure Reverse Proxy

2010-05-18 Thread Kevin Castellow
There is the possibility to use an exclusion and not proxy requests to a subdirectory. However, how do you plan on stopping a user that wants to get to resource-lists(192.168.1.1) from going to the other service with the same url? I don't think the exclusion is the answer you are exactly looking

[us...@httpd] 301 redirect

2010-05-18 Thread Piotr Kloc
Hello ! Can I set the redirect 301 not in .htaccess but in apache conf ? I have tried to set this RewriteEngine on RewriteRule ^webmail/(.*)$ http://somedomain.com/webmail/$1 [R=301,L] and it doesnt work if I put this in .htaccess it does I want to set redirect directory for all my vhosts

Re: [us...@httpd] 301 redirect

2010-05-18 Thread Nick Kew
On 18 May 2010, at 23:02, Piotr Kloc wrote: Hello ! Can I set the redirect 301 not in .htaccess but in apache conf ? I have tried to set this RewriteEngine on RewriteRule ^webmail/(.*)$ http://somedomain.com/webmail/$1 [R=301,L] Every URL starts with /, so none can match that pattern.

RE: [us...@httpd] Struggle with Named Virtual Host - The SecondNamedVirtual HostAlways Returns 404 File Not Found Error

2010-05-18 Thread Wang, Mary Y
Thanks for the help. The DNS alias is properly set for the download-devbrass2, it is listed as a CNAME for devbrass2. When you said Are you sure the DNS alias is properly set for the download domain?, did you just mean that I needed to register the download-devbrass2 as a . If so, yes, I

[us...@httpd] Is /etc/resolve.conf being Used for Apache 2?

2010-05-18 Thread Wang, Mary Y
Hi, Is /etc/resolve.conf being used for Apache2 to resolve DNS issues? Thanks Mary - 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

Re: [us...@httpd] Is /etc/resolve.conf being Used for Apache 2?

2010-05-18 Thread Eric Covener
On Tue, May 18, 2010 at 8:53 PM, Wang, Mary Y mary.y.w...@boeing.com wrote: Hi, Is /etc/resolve.conf being used for Apache2 to resolve DNS issues? Apache calls into your systems resolver, which might be configured by /etc/resolv.conf. Why do you suspect it doesn't? What problem do you have?

RE: [us...@httpd] Is /etc/resolve.conf being Used for Apache 2?

2010-05-18 Thread Wang, Mary Y
Well.. I'm just trying to make sure that I cover all ends to make sure that a DNS alias (a CNAME) is working correctly like I expected. I've having some Virtual Host problem... You can see my previous posts with this subject title Struggle with Named Virtual Host - The Second Named Virtual Host