MyBB Community Forums

Full Version: .htaccess
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Ugh, I forgot what you're supposed to add to your .htaccess file to get example.com/forum to lead to example.com/forum/portal.php and not /index.php

I believe it was .directory something.
in the .htaccess file in the \forum folder, put

DirectoryIndex portal.php index.php
I would use:

DirectoryIndex portal.php index.php index.html

Added index.html to the list so an error won't appear when trying to access a directory with index.html.
Thank you.