query style, numeric and slug-based permalinks, what is the difference ?
bbPress support forums » Installation
difference between permalinks
(4 posts)-
Posted 6 months ago #
-
query style = ?id=12
numeric = /12
slug = /some-topic-namePosted 6 months ago # -
sorry finalwebsites, but this dont tell me much
Posted 6 months ago # -
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-topicPosted 6 months ago #
Reply
You must log in to post.