Ok, so I have basic custom pages /about/, /rules/ etc but now I'm trying to make a credits section under the about me but I can't seem to figure out how to make it go back 2 folders.
So it's like this, domain.com/about/credits/
For my about, I have:
Code: Select all
$phpbb_root_path = (defined('PHPBB_ROOT_PATH')) ? PHPBB_ROOT_PATH : '../';
Obviously it works fine, when I made the credits folder within the about folder and tried:
Code: Select all
$phpbb_root_path = (defined('PHPBB_ROOT_PATH')) ? PHPBB_ROOT_PATH : '.../';
It doesn't work. Any insight to this?