PDA

View Full Version : [Solved] Redirect Printthread to showthread


Nas.er
10-08-2020, 02:39 PM
Hello vB's

Im trying to fowroding printthread.php threads url to full showthreads.php "vB3.8"
like www. domain .com/printthread?t=xxxx to>>> domain .com/showthread?t=xxxx

Any help?

Thanks

Dr.CustUmz
10-08-2020, 05:41 PM
you need to create a redirect within the print thread page and define the thread id variable.

header("Location: showthread.php?t=$threadinfo[threadid]");
exit();

attached is a PLUGIN (not product) that will give you your desired modification.

Nas.er
10-08-2020, 07:28 PM
you need to create a redirect within the print thread page and define the thread id variable.

header("Location: showthread.php?t=$threadinfo[threadid]");
exit();

attached is a PLUGIN (not product) that will give you your desired modification.

Thank you very much ! :up: it worked 100%