You can try this
------------------------------------------------------------
RewriteEngine On
RewriteCond %{HTTP_HOST}%{REQUEST_URI} ^domainname.com/$ [NC,OR]
RewriteCond %{HTTP_HOST}%{REQUEST_URI} ^www.domainname.com/$ [NC]
RewriteRule ^(.*)$ http://www.domainname.com/test.php/$1 [r=301,nc]
------------------------------------------------------------
OR
Code:
# Redirect old file path to new file path
RewriteEngine On
Redirect /olddirectory/oldfile.html http://domainame.com/newdirectory/newfile.html