MyBB Community Forums

Full Version: 302 redirects
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello,
I noticed many 302 redirects that the software creates, for example

www.to-hawaii.com/forums/Thread-Flying-from-Oahu-to-the-Big-Island?action=lastpost

www.to-hawaii.com/forums/Thread-Four-nights-at-the-Four-Seasons-Lodge-at-Koele?action=newpost

etc..

Is there a way to make those 301 instead of 302?

Thank you.
Find this line in showthread.php
	header("Location: ".htmlspecialchars_decode(get_post_link($pid, $tid))."#pid{$pid}");
	exit;
Add before:
header("HTTP/1.0 301 Moved Permanently");
Thanks for your help, dragonexpert!
Are there any other settings that create 302 redirects and if so how can I fix them?
I'm not sure, but possibly when you do a search it might.
I found another one - www.to-hawaii.com/forums/Thread-Hamakua-Coast-beaches?action=nextoldest
Do you know what file I need to modify? thanks again.
That is in showthread.php.
I already added header("HTTP/1.0 301 Moved Permanently"); before header("Location: ".htmlspecialchars_decode(get_post_link($pid, $tid))."#pid{$pid}");
Is there any other place I need to modify in this file?