url redirection with apache .htaccess file

This works with apache 1.3
redirect old-url new-url

Or try mod_rewrite


RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]


Google