Apache Redirects - validation failed

Not sure why the validation failed. Am I missing something?

   21  history
[banner@stapp03 conf]$ !13
curl http://stapp03.stratos.xfusioncorp.com:8085/
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
<html><head>
<title>301 Moved Permanently</title>
</head><body>
<h1>Moved Permanently</h1>
<p>The document has moved <a href="www.stapp03.stratos.xfusioncorp.com:8085/">here</a>.</p>
</body></html>
[banner@stapp03 conf]$ !18
curl www.stapp03.stratos.xfusioncorp.com:8085/
Welcome to the Nautilus Group!
[banner@stapp03 conf]$ curl www.stapp03.stratos.xfusioncorp.com:8085/blog/
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
<html><head>
<title>302 Found</title>
</head><body>
<h1>Found</h1>
<p>The document has moved <a href="http://www.stapp03.stratos.xfusioncorp.com:8085/news/">here</a>.</p>
</body></html>
[banner@stapp03 conf]$ tail httpd.conf 

<VirtualHost *:8085>
  ServerName stapp03.stratos.xfusioncorp.com
  Redirect 301 / www.stapp03.stratos.xfusioncorp.com:8085/
</VirtualHost>

<VirtualHost *:8085>
  ServerName www.stapp03.stratos.xfusioncorp.com
  Redirect 302 /blog /news
</VirtualHost>
[banner@stapp03 conf]$ 

I think you need to specify if it is http:// or https:// in the first instance.

Thanks, that fixed it.