adikwok wrote:i just made this changes.. could it be right ?
$this->seo_static = array( 'forum' => 'lowongan', 'topic' => 'lowongankerja', 'post' => 'post', 'user' => 'member', 'group' => 'group', 'index' => 'lowongan-kerja',
Oh my, no. You should only change three things to rename your index, and don't change anything else.
OPEN:
phpbb-seo/phpbb-seo-class.php
FIND:
$this->seo_static = array( 'forum' => 'forum', 'topic' => 'topic', 'post' => 'post', 'user' => 'member', 'group' => 'group', 'index' => '', 'global_announce' => 'announces', 'leaders' => 'the-team', 'atopic' => 'active-topics', 'utopic' => 'unanswered', 'npost' => 'newposts', 'pagination' => 'page', 'gz_ext' => '.gz' );
REPLACE WITH:
$this->seo_static = array( 'forum' => 'forum', 'topic' => 'topic', 'post' => 'post', 'user' => 'member', 'group' => 'group', 'index' => '
lowongan-kerja', 'global_announce' => 'announces', 'leaders' => 'the-team', 'atopic' => 'active-topics', 'utopic' => 'unanswered', 'npost' => 'newposts', 'pagination' => 'page', 'gz_ext' => '.gz' );
FIND:
$this->seo_ext = array( 'forum' => '.html', 'topic' => '.html', 'post' => '.html', 'user' => '.html', 'group' => '.html', 'index' => '', 'global_announce' => '/', 'leaders' => '.html', 'atopic' => '.html', 'utopic' => '.html', 'npost' => '.html', 'pagination' => '.html', 'gz_ext' => '');
REPLACE WITH:
$this->seo_ext = array( 'forum' => '.html', 'topic' => '.html', 'post' => '.html', 'user' => '.html', 'group' => '.html', 'index' => '
.html', 'global_announce' => '/', 'leaders' => '.html', 'atopic' => '.html', 'utopic' => '.html', 'npost' => '.html', 'pagination' => '.html', 'gz_ext' => '');
OPEN:
.htaccess
(this assumes you still have the same .htaccess file from the one I posted earlier)
FIND:
RewriteRule ^/lowongankerja/\.html$ /lowongankerja/index.php [QSA,L,NC]
REPLACE WITH:
RewriteRule ^/lowongankerja/
lowongan-kerja\.html$ /lowongankerja/index.php [QSA,L,NC]
SAVE AND CLOSE ALL
Don't forget to clear your cache in the ACP.
