MyBB Community Forums

Full Version: How do I fix these links?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
http://www.nlarcade.com/

If you look on the right, any link to a user's profile goes to a 404 error (goes to user-xxxxx instead of /forum/user-xxxxx). My portal is external. Is there a way I can change that link?
If you were using the default MyBB installation, you could do this:

In inc/init.php, find:
define('PROFILE_URL', "user-{uid}.html");
Replace with:
define('PROFILE_URL', $mybb->settings['bburl']."user-{uid}.html");

But it seems like you're using some SEO mod, so I don't know if it will work.
Yeah, unfortunately, it actually changed nothing, but thanks anyway. I'm using Google SEO at the moment.
It seems that these URLs provide the same content:

http://www.nlarcade.com/index.php
http://www.nlarcade.com/forum/portal.php

On second page/portal everything is fine. Why not just redirect (.htaccess or PHP) from first page to second one?
They're the same cause I never really bothered to remove portal.php Toungue. Besides, I'm not that good of a programmer, unfortunately Sad.