MyBB Community Forums

Full Version: Custom directory and custom page?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I have create a custom directory and then added a custom page index.php in it so you can access it like this: example.com/custom-directory/

Now I see the issue! When I inside the directory example.com/custom-directory/ I see many link turn to example.com/custom-directory/link not example.com/link

How to take care of that?
You should use full links in your templates and not relative links. The easiest way to do this is to use {$mybb->settings['bbur']} in your templates.

Full length ex. http://www.community.mybb.com/member.php...&uid=73521
Relative Link: member.php?action=profile&uid=73521
Yeah buddy full link did the job Smile Thanks