Add this to your htaccess file in your document root:
RewriteCond %{QUERY_STRING} ^f=12&t=345$ RewriteRule ^forum/viewtopic.php$ /landing-page.html [R=301]
Essentially, you want to match the query string in this RewriteCond and the URI in the RewriteRule .
source share