MyBB Community Forums

Full Version: Redirect only some threads
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Is it possible to make a 301 redirect with only a few threads to another site?

If yes, how?
You'll need a plugin to make an actual thread redirect.
http://www.isitebuild.com/301-redirect.htm

Just set it up though a .htaccess if it's only a select few that and they're going to say that way.
Where should i put it in the .htacess that MyBB has.
i tried putting this code at the bottom but it didn't work.
redirect 301 /showthread.php?tid=28 http://mybbmodding.co.cc/forums/showthread.php?tid=18

BTW, i am using MyBB's default SEO.
I managed to do it(not perfectly though)

i added this into .htacess just after "RewriteEngine on"
RewriteRule ^thread-28.html http://mybbmodding.co.cc/forums/showthread.php?tid=18 [R=301,L]

I added as many as threads i wanted.

however,when i added links such as ^showthread.php?tid=18, it caused all the redirections not to work.