Apache redirecting

Dear All

I need to redirect requests coming in on a second domain, to a page within an existing web site.

So basicly

http:\\webtest should be redirected to http:\\ustnd5\ukt\newsroom\newsroom.jsp

I have the line

ProxyPassReverse /ukt/newsroom/newsroom.jsp http://webtest:10080/

but it does nothing. What am I missing ? Can I even use ProxyPassReverse in this way or is there another way of achiving this ?

All help much appreciated.

Hi,
one possibility is

RewriteCond %{HTTP_HOST} ^webtest [NC]
RewriteRule ^(.*)$ http://ustnd5/$1 [R=301,QSA,L]

without warranty