HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.

DefaultPage 1.2.5

Define the page which is displayed when a user first signs in.
In other words use a different 'Home Page' for your forum.

Avoids the need to make changes to your .htaccess files or use mod_rewrite.

Notes

It is not possible to use a 'friendly url' for the default page, please use a 'dynamic url' instead:

http://mywebsite.com/discussion/3
translates to
comments.php?DiscussionID=3

Issues

If ConfirmGoBack is enabled the following changes will be needed to the ConfirmGoBack default.php file:

Change Line 39
window.location = \'' . GetUrl($this->Context->Configuration, 'index.php', '', '', '', '', 'IgnoreDefaultPage=1') . '\';

Change Line 43
window.location = \'' . GetUrl($this->Context->Configuration, 'index.php', '', '', '', '', 'IgnoreDefaultPage=1') . '\';

If you have 'Pimped my Vanilla' extension installed make sure that DefaultPage is enabled before DefaultPage. In fact I would make sure that DefaultPage is the last extension installed to make sure it updates changes to the url made by other extensions.

Questions