MyBB Community Forums

Full Version: how to install mybb in a subdirectory
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
how to install mybb in a subdirectory.Like example.com/forum/
and redirect my domain to that subdirectory like when i enter in address bar
example.com it automatically go to example.com/forum/
HuhHuhHuhHuh
you can make a folder in your files web server (under public_html or www) and upload MyBB source files
to that folder and install. redirecting can be done by using .htaccess redirect rule or a index.php file

example index.php file to redirect from root folder to forum folder
<?php
   header( 'Location: /forum' ) ;
?>