Hey Buddy,
This can be done very simply by editing the .htaccess file on your server. Here are some examples:
Redirect /path/to/old/file/old.html http://www.example.com/new/file/new.html
or maybe this will help:
Redirect /index.html /new/
Redirect /index.html /default.html
Redirect /private/ http://www.example.com/private/
Redirect /img/logo.gif http://www.example.com/images/logo.gif
or maybe this example:
RewriteEngine on
RewriteCond %{HTTP_HOST} ^example.com [NC,OR]
RewriteCond %{HTTP_HOST} ^http://www.example.com [NC]
RewriteRule ^(.*)$ http://example.net/$1 [L,R=301,NC]
Good Luck!!