Решил сделать ссылки вида site.ru/idN - где N сам ид пользователя.
И так приступим.
Находим в дистрибутиве файл
Цитата
/admin/applications/members/extensions/furlTemplates.php
В нем находим
'showuser' => array( 'app' => 'members', 'allowRedirect' => 1, 'out' => array( '#showuser=(.+?)((?:&|&)f=(.+?))?(&|$)#i', 'user/$1-#{__title__}/$2$4' ), 'in' => array( 'regex' => "#^/user/(d+?)-#i", 'matches' => array( array( 'showuser', '$1' ) ) ) ),
Заменяем на
'showuser' => array( 'app' => 'members', 'allowRedirect' => 1, 'out' => array( '#showuser=(.+?)((?:&|&)f=(.+?))?(&|$)#i', 'id$1/$2$4' ), 'in' => array( 'regex' => "#/id(d+?)(/|$)#i", 'matches' => array( array( 'showuser', '$1' ) ) ) ),
Далее заходим
Цитата
АЦ > Инструменты > Управление кешем
И нажимаем Перестроить FURL кеш
Готово! Теперь у нас получились ссылки вида site.ru/idN
©HooLIGUN
Recommended Comments
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.