how to not have forum.php in the URL

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Matthew Gordon
    Senior Member
    • May 2002
    • 3243
    • 1.1.x

    #16
    If you edit the Forum tab, you can change the Target URL to /forums/{session.sessionurl_q}

    The problem with that is that it will result in a endless redirect loop, so you also have to edit your index.php file:
    PHP Code:
    define('VB_REDIRECT'true); 
    Comment out that line so it looks like this:
    PHP Code:
    // define('VB_REDIRECT', true); 

    Comment

    Related Topics

    Collapse

    Working...