MyBB Community Forums

Full Version: Log out redirect
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
After log out users get redirected to http://letsforum.com/index.php
but I want them to get redirected to http://letsforum.com/
How to change that?
Thanks
find below code in member.php file, around line 1431 (MyBB 1.6.11)
redirect("index.php", $lang->redirect_loggedout);
you can change it to
redirect("./", $lang->redirect_loggedout);
Thanks very much .M. you are awesome!