MyBB Community Forums

Full Version: Portal
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
Create a .htaccess file in your root folder (not forums folder) and put in this:
RewriteEngine On
RewriteRule ^portal.php$ index.php [L,R=302]

Make sure your cookie path in the mybb settings is empty.
Says this, when I log on my site, on the portal page.

Quote:Not Found

The requested URL /home/toontow2/public_html/index.php was not found on this server.

Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.

Any idea?
Add a RewriteBase to the .htaccess, like this:
RewriteEngine On
RewriteBase /
RewriteRule ^portal.php$ index.php [L,R=302]
Aaah, that worked. Smile

Thanks Aries.
I had some trouble with the images. Do you see your images on the portal page?
If not, add this line at the end of .htaccess:
RewriteRule ^(images/.*)$ forums/$1 [L,R=302]
Pages: 1 2