What's wrong with this 301 redirect?

I’ve followed several tutorials on 301 redirects, and it doesn’t seem all that complicated…but this one just isn’t working. Can anyone tell me why the 301 is not redirecting, and how to fix it?

# Use PHP5 as default
AddHandler application/x-httpd-php5 .php

RewriteEngine ON

RewriteCond %{HTTP_HOST} ^mysite.com
RewriteRule (.*) http://www.mysite.com/$1 [R=301,L]

redirect 301 www.mysite.com/clickbankbooksforsale/originalTitle.htm http://www.mysite.com/newTitle.htm

Hi go!

Sure: Your Redirect statement is not properly formatted (syntax error). Check-out the proper format for Redirect.

Regards,

DK

Seems I’ve been looking at some outdated instructions.
Thanks for the link and the correction!