P.S. Sorry for my poor english
Moderator: Moderators
install.xml wrote:=> By Default, this mod will get rid of index.php for phpBB's index.
You can change this in phpbb_seo/includes/setup_phpbb_seo.php if you prefer.
To do this, you can for example add :
- Code: Select all
$this->seo_static['index'] = 'forum';
before :
- Code: Select all
// Let's make sure that settings are consistent
$this->check_config();
This is mostly useful if you're running a portal in the folder where phpBB is installed.
=> The first setting to do is to select which static part to use in your URLs.
To do so, you can override default values in phpbb_seo/includes/setup_phpbb_seo.php, still before :
- Code: Select all
// Let's make sure that settings are consistent
$this->check_config();
EXAMPLES :
__________
// => the-team :
- Code: Select all
$this->seo_static['leaders'] = 'my-team'; // instead of the default "the-team"
// => announces :
- Code: Select all
$this->seo_static['global_announce'] = 'announcements'; // instead of the default "announces"
// => Active topics :
- Code: Select all
$this->seo_static['atopic'] = 'important-topics'; // instead of the default "active-topics"
// => Unaswered :
- Code: Select all
$this->seo_static['utopic'] = 'not-answered'; // instead of the default "unanswered"
// => Newposts :
- Code: Select all
$this->seo_static['npost'] = 'new-messages'; // instead of the default "newposts"
=> As well as for (and the same way) :
forum ($this->seo_static['forum']), topic ($this->seo_static['topic']), post ($this->seo_static['post']), member ($this->seo_static['member']), groups ($this->seo_static['group']), attachments virtual directory ($this->seo_static['file_index'], read the comments in the file for more attachments customizing) and virtual folder pagination ($this->seo_static['page'])

Users browsing this forum: No registered users and 7 guests