Since I only have one forum on my website, I would like the Forum link in the menu to redirect users straight to that forum.
In other words, instead of going to /forum, I would like it to go to /forum/2.
I guess I would have to modify forum/init.php, but my attempts at modifying the code were unsuccessful...
I think that's the part that needs to be modified:
OW::getRouter()->addRoute(new OW_Route('forum-default', 'forum', 'FORUM_CTRL_Index', 'index'));
OW::getRouter()->addRoute(new OW_Route('customize-default', 'forum/customize', 'FORUM_CTRL_Customize', 'index'));
OW::getRouter()->addRoute(new OW_Route('group-default', 'forum/:groupId', 'FORUM_CTRL_Group', 'index'));
OW::getRouter()->addRoute(new OW_Route('topic-default', 'forum/topic/:topicId', 'FORUM_CTRL_Topic', 'index'));
Any suggestions would be greatly appreciated!
Thank you very much!