Good now – all you have to do is turn off permalinks after you move a directory.
If you want the Permalinks options to work, you have to change the “options-permalinks.php” file. Mine initially looked like this:
**********
$permalink_options = array(
‘mod_rewrite’ => array(
‘title’ => __( ‘Permalink type’ ),
‘type’ => ‘radio’,
‘options’ => array(
’0′ => sprintf( __( ‘<span>None</span> %s‘ ), bb_get_uri( ‘forums.php’, array( ‘id’ => 1 ), BB_URI_CONTEXT_TEXT ) ),
’1′ => sprintf( __( ‘<span>Numeric</span> %s‘ ), bb_get_uri( ‘forums/1′, null, BB_URI_CONTEXT_TEXT ) ),
‘slugs’ => sprintf( __( ‘<span>Name based</span> %s‘ ), bb_get_uri( ‘/forums/first-forum’, null, BB_URI_CONTEXT_TEXT ) )
)
)
);
**********
And so I changed it to this:
**********
$permalink_options = array(
‘mod_rewrite’ => array(
‘title’ => __( ‘Permalink type’ ),
‘type’ => ‘radio’,
‘options’ => array(
’0′ => sprintf( __( ‘<span>None</span> %s‘ ), bb_get_uri( ‘forums.php’, array( ‘id’ => 1 ), BB_URI_CONTEXT_TEXT ) ),
’1′ => sprintf( __( ‘<span>Numeric</span> %s‘ ), bb_get_uri( ‘/1′, null, BB_URI_CONTEXT_TEXT ) ),
‘slugs’ => sprintf( __( ‘<span>Name based</span> %s‘ ), bb_get_uri( ‘/first-forum’, null, BB_URI_CONTEXT_TEXT ) )
)
)
);
**********