>A service has encountered an error. Try to refresh the view (Myserver/Web). Report the problem... (could not start web service - details in error log).
My bad - I didn't read closely enough.
The redirect has to be to a URL, not a relative path, so you'll need to include the
http://your.server.net/ part in the redirect target.
You might also need to be more explicit on the match - the docs indicate that URIs that
start with the string are redirected. Since every URI is going to start with / you'll be in an endless redirect.
Try changing the pattern to ^/$ (which will match exactly / as opposed to anything that begins with /).