ForexTalk Member Jul 16, 2013 #1 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.
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.
P Paul B XenForo moderator Staff member Jul 16, 2013 #2 Use a page node and set it as your landing page using .htaccess and an index.html/php redirect. http://xenforo.com/community/resources/how-to-create-a-page-node.354/ Upvote 0 Downvote
Use a page node and set it as your landing page using .htaccess and an index.html/php redirect. http://xenforo.com/community/resources/how-to-create-a-page-node.354/
ForexTalk Member Jul 16, 2013 #3 I know how to create a page node. Can you please guide me how to set up the redirect? Thank you very much. Upvote 0 Downvote
I know how to create a page node. Can you please guide me how to set up the redirect? Thank you very much.
P Paul B XenForo moderator Staff member Jul 16, 2013 #4 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 Upvote 0 Downvote
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