Вы можете использовать это:
RewriteEngine on
#redirect from old url to the new one
RewriteCond %{THE_REQUEST} /index.php\?ctrl=location&action=view [NC]
RewriteRule ^.+$ /test.html? [L,R=301]
# map new url to the old location
RewriteRule ^test\.html$ /index.php?ctrl=location&action=view [L]