On Wed, Mar 17, 2010 at 6:02 AM, Milan Tomic <tomicmi...@yahoo.com> wrote:
>
> I have also tried LocationMatch:
>
> <LocationMatch "/SomeUrl/[A-Za-z0-9]+">
> ProxyPass  http://www.yahoo.com/
> </LocationMatch>
>
> and
>
> <LocationMatch "/SomeUrl/.+">
> ProxyPass  http://www.yahoo.com/
> </LocationMatch>
>
> but without success. I need to match if there is anything behind slash /
>
> TIA
>
>
>
>
> ----- Original Message ----
> From: Milan Tomic <tomicmi...@yahoo.com>
> To: users@httpd.apache.org
> Sent: Wed, March 17, 2010 12:13:52 AM
> Subject: Re: [us...@httpd] VirtualHost & Location
>
>
>
>
>> Why are you using ProxyPass ? You can use Redirect if don't want to mask
>> that content is coming from your server (and of course save your bandwidth).
>
> I have tried this:
>
> <VirtualHost *:8080>
> <Location /SomeUrl/>
> ProxyPass  http://localhost:8082/SomeUrl/
> </Location>
>
> Redirect /SomeUrl/index.html http://www.google.com
> Redirect /SomeUrl http://www.google.com
> Redirect /SomeUrl/ http://www.google.com
>
> </VirtualHost>
>
> but only second Redirect directive works fine. It seems that others are 
> overriden by ProxyPass? What should I do now? :(
>
> TIA
>
>
>
>
>
> ---------------------------------------------------------------------
> 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
>   "   from the digest: users-digest-unsubscr...@httpd.apache.org
> For additional commands, e-mail: users-h...@httpd.apache.org
>
>
>
>
> ---------------------------------------------------------------------
> 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
>   "   from the digest: users-digest-unsubscr...@httpd.apache.org
> For additional commands, e-mail: users-h...@httpd.apache.org
>
>

Use mod_rewrite.

<VirtualHost *:8080>
RewriteEngine On
RewriteRule ^/SomeUrl/(.*)$ http://www.google.com/$1 [R=301]
</VirtualHost>

-- 
Nilesh Govindarajan
Site & Server Administrator
www.itech7.com

---------------------------------------------------------------------
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
   "   from the digest: users-digest-unsubscr...@httpd.apache.org
For additional commands, e-mail: users-h...@httpd.apache.org

Reply via email to