bbPress

Simple, Fast, Elegant

bbPress support forums » Themes

single forum

(7 posts)
  • Started 1 year ago by bbmaus
  • Latest reply from bbmaus
  • This topic is not resolved
  1. bbmaus
    Member

    Hi,

    Does somebody know a way to work with a single forum and have the page-function working on the frontpage?

    I need a way without redirecting to forum.php

    Posted 1 year ago #
  2. bbmaus
    Member

    Nobody with any idaes ? How do other people work with only one forum?

    Posted 1 year ago #
  3. It really isn't that simple and I don't think anyone has attempted it yet. It would require your 'front-page' template to work much like your forum.php file and off the top of my head, I can't think what exactly would be the best way to do that. Anyone else have an idea?

    Trent

    Posted 1 year ago #
  4. You could just replace the index.php with a page that redirects to the forum page. You could probably also add the hot tags or anything else to the forum page template if you wanted them.

    Posted 1 year ago #
  5. bbmaus
    Member

    Problem is that i don't like redirects for several reasons; nor do search-engines like them.

    The only problem seems to be in calling the pagenavigation on the frontpage. There must be a way to handle this.

    Maybe a plugin required?

    Posted 1 year ago #
  6. Search engines have no problems with 301 redirects.

    http://www.tamingthebeast.net/articles3/spiders-301-redirect.htm

    You could save this as your index.php and not have any trouble:

    <?php
    header("Status: 301 Moved Permanently", false, 301);
    header("Location: http://www.yourdomain.com/forum.php");
    exit();
    ?>

    What are the reasons you don't like redirects?

    Posted 1 year ago #
  7. bbmaus
    Member

    Thanks, but are you shure chrishajer?

    I don't like redirects because i believe that a clean site structure is always better. However, this is not based on proven knowledge...

    Posted 1 year ago #

RSS feed for this topic

Reply

You must log in to post.

Code is Poetry.