Quote:
Originally Posted by Adam21
Edit: Its there a way to remove the forum id from the rewrite url?
i.e:
Code:
http://www.myforum.com/forum/forumid-forum description/thread title.html
|
Yes, it is supported:
edit yabbseo/data/config.php,
change
PHP Code:
'forumtitleonly' => '0',
to
PHP Code:
'forumtitleonly' => '1',
And then you remove the f{forum_id}_ from
PHP Code:
'template' =>
array (
'showthreadpage' => 'f{forum_id}-{forum_title}/{thread_title}-{thread_id}-page{thread_page}.html',
'showthread' => 'f{forum_id}-{forum_title}/{thread_title}-{thread_id}.html',
'showthreadnew' => 'f{forum_id}-{forum_title}/{thread_title}-{thread_id}-newpost.html',
'showthreadpost' => 'f{forum_id}-{forum_title}/{thread_title}-{thread_id}-p{post_id}.html#post{post_id}',
'forumdisplaypage' => 'f{forum_id}-{forum_title}/index{forum_page}.html',
'forumindex' => 'forumindex.html',
'forumdisplay' => 'f{forum_id}-{forum_title}',
'member' => 'members/{username}.html',
'memberlistpage' => 'memberlists/{member_page}.html',
'memberlistltr' => 'memberlists/{letter}.html',
'memberlistltrpage' => 'memberlists/{letter}-{member_page}.html',
'memberlist' => 'memberlists',
),
You need note that you have to make your forum titles are different. And this lite version doesn't support customise your forum title without actually changing the forum title. Our full version will support customise the forum title.