XF 1.1 Create content homepage

ForexTalk

Member
Hello,

I installed XF on example.com/forum/.

How can I create a content homepage just as at xenforo.com? Do I need to install any addition platform.

At the moment, my homepage example.com is just an index page with directory.

Thank you.
 
When I had it set up I had a home.php file in the root with a 301 redirect to the page node.
PHP:
<?php
header('Location: http://cliptheapex.com/community/pages/home', true, 301);


And in the root .htaccess I had this:
Code:
DirectoryIndex home.php
 
Top Bottom