Hi,
I've successfully installed bbPress and Pretty Premalinks on my site. I want to modify the Premalinks.
For example:
http://www.example.com/forum/1
to become
http://www.example.com/forum-1
I tried to modify the admin/rewrite-rules.php.
RewriteRule ^forum/([0-9]+)/page/([0-9]+)$ <?php bb_option( 'path' ); ?>forum.php?id=$1&page=$2 [L,QSA]
My ideea was:
RewriteRule ^forum-([0-9]+)/page/([0-9]+)$ <?php bb_option( 'path' ); ?>forum.php?id=$1&page=$2 [L,QSA]
However all the changes I do the rewrite-rules.php give an error and do not modify the ULR. Is there another file where the rewrite-rules are configured?
Thanx for the support.