Hey Dave, Thanks much my friend!
I actually got that working with the 301 Redirect. I just needed to add another
RewriteEngine On
The next and last issue is to redirect a thread that no longer exists to a new thread.. Like this..
/showthread.php?t=11929 to
https://###############/showthread.php?t=220860
301 will not work and the following wouldn't work..
RewriteEngine On
RewriteCond %{HTTP_HOST} ^$
RewriteCond %{QUERY_STRING} (^|&)t=11929($|&)
RewriteRule ^showthread\.php$ https://###########/showthread.php?t=220860&%{QUERY_STRING}