Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: difference between permalinks


chrishajer
Participant

@chrishajer

Well, AFAIK, bbPress only allows three values for permalinks: true, false and slugs. In config.php, there is a line (around line 27 in the current 0.8.3.1 release I think) that starts $bb->mod_rewrite =. I think it works like this. Of course, you can try modifying your config.php and see for yourself as well.

$bb->mod_rewrite = true;

/bbpress/topic.php?id=526&page#post-6043

$bb->mod_rewrite = false;

/bbpress/topic/526

$bb->mod_rewrite = 'slugs';

/bbpress/topic/the-title-of-the-topic

Skip to toolbar