Forums

Join
bbPress Support ForumsInstallationdifference between permalinks

Info

difference between permalinks

  1. query style, numeric and slug-based permalinks, what is the difference ?

  2. query style = ?id=12
    numeric = /12
    slug = /some-topic-name

  3. sorry finalwebsites, but this dont tell me much

  4. 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

  5. You must log in to post.