Old domain to new domain

This redirect is for website that are redirecting an old domain to a new domain but keeping the filenames of the webpages the same.
Example
# Example of valid markup
RewriteCond %{HTTP_HOST} ^old.org$ [NC,OR]
RewriteCond %{HTTP_HOST} ^www.old.org$ [NC]
RewriteRule (.*)$ http://new.com/$1 [R=301,L]