Info
- 4 posts
- 3 voices
- Started 4 years ago by daga
- Latest reply from chrishajer
- This topic is not resolved
difference between permalinks
-
- Posted 4 years ago #
query style, numeric and slug-based permalinks, what is the difference ?
-
- Posted 4 years ago #
query style = ?id=12
numeric = /12
slug = /some-topic-name -
- Posted 4 years ago #
sorry finalwebsites, but this dont tell me much
-
- Posted 4 years 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-topic -
You must log in to post.