Page 1 of 1

Board3 Portal "default"?

Posted: 11. September 2023 19:05
by Karado58
Hello,

Firstly, thank you for such a great add-on to phpBB!!

How can I make the Portal page default?

Right now it defaults to "Board index".

Theme: prosilver French edition by phpBB-fr.com

Thank you.

Re: Board3 Portal "default"?

Posted: 11. September 2023 19:24
by archivar
Please look here: Portal as Site Main Page

Re: Board3 Portal "default"?

Posted: 12. September 2023 06:01
by Karado58
Hello @archivar
Fantastic tutorial!!
The second method worked beautifully!!

Create a file called portal.php with the following content:
<?php
header("Location: https://xxxxxxxxxxxx/app.php/portal");
exit;


Replace the xxx with the URL to your forum. Load this file into your forum root (where the config.php is located).
Open: root/.htaccess

Insert this at the very end:
DirectoryIndex portal.php index.php index.html index.htm

Thank you!!!