On 1/5/06, senthil kumar <bsenthil@xxxxxxxxx> wrote: > Hi Axel, > > I am not looking for proxy concept, i don't want to configure my browser to > point to my proxy server. > I am looking for gateway concept, I want to communicate external domain > through my gateway apache server. > > Browser <---------> My Gateway Apache Server <-------------> External > domain > > Note:: My Gateway apache server internaly acts as a proxy server. > > that's why the requested external domain url as pass as the url string like > http://localhost:8080/www.test.com You can probably do RewriteEngine On RewriteRule (.*) http://$1 [P] But the results will be pretty strange. In particular, redirects won't be properly rewritten because you can't use ProxyPassReverse in a configuration like that. Joshua.