Ладно, попробуем разобрать на примере модуля Files для 2,5-2,6, т.к. Open Slaed у меня никак не работает, ни на локалхост, ни на сайте ну никак не работает)))
Для начала отключите в настройках ЧПУ. (ПОтом включим по окончанию работы).
Первое.
Открываем файл
function/sources.php,
добавляем в самый конец, перед
?> следующий код:
function encodehtml($string)
{
$table = array('А' => 'A', 'Б' => 'B', 'В' => 'V', 'Г' => 'G', 'Д' => 'D', 'Е' => 'E', 'Ё' => 'YO', 'Ж' => 'ZH', 'З' => 'Z',
'И' => 'I','Й' => 'J', 'К' => 'K','Л' => 'L', 'М' => 'M','Н' => 'N','О' => 'O', 'П' => 'P', 'Р' => 'R', 'С' => 'S', 'Т' => 'T', 'У' => 'U', 'Ф' => 'F', 'Х' => 'H', 'Ц' => 'C',
'Ч' => 'CH','Ш' => 'SH',
'Щ' => 'CSH',
'Ь' => '',
'Ы' => 'Y',
'Ъ' => '',
'Э' => 'E',
'Ю' => 'YU',
'Я' => 'YA',
'а' => 'a',
'б' => 'b',
'в' => 'v',
'г' => 'g',
'д' => 'd',
'е' => 'e',
'ё' => 'yo',
'ж' => 'zh',
'з' => 'z',
'и' => 'i',
'й' => 'j',
'к' => 'k',
'л' => 'l',
'м' => 'm',
'н' => 'n',
'о' => 'o',
'п' => 'p',
'р' => 'r',
'с' => 's',
'т' => 't',
'у' => 'u',
'ф' => 'f',
'х' => 'h',
'ц' => 'c',
'ч' => 'ch',
'ш' => 'sh',
'щ' => 'csh',
'ь' => '',
'ы' => 'y',
'ъ' => '',
'э' => 'e',
'ю' => 'yu',
'я' => 'ya',
' ' => '_',
'*' => '',
'(' => '',
')' => '',
'\'' => '-',
',' => '',
'%' => 'percent',
'!' => '',
'"' => '', );
$output = str_replace( array_keys($table),array_values($table),$string);
return $output;
}
Сохраняем, закрываем.
Второе.
Открываем
modules/Files/index.php. Смысл здесь прост - дописать к URLам параметр, который будет выводить заголовок в адрес.
Функция mainfiles(). Найти
."<td colspan=\"2\"><table border=\"0\" cellpadding=\"1\" cellspacing=\"0\"><tr><td>$zimg</td><td><a href=index.php?name=$module_name&op=view_file&lid=$lid title=\"$f_title\"><b>$f_title</b></a></td><td>".new_graphic($formatted)."</td></tr></table></td><td align=\"right\">"._ADDDATE.": $fp_data</td></tr>"
заменить на:
."<td colspan=\"2\"><table border=\"0\" cellpadding=\"1\" cellspacing=\"0\"><tr><td>$zimg</td><td><a href=\"index.php?name=$module_name&op=view_file&lid=$lid&title=".encodehtml($f_title)."\" title=\"$f_title\"><b>$f_title</b></a></td><td>".new_graphic($formatted)."</td></tr></table></td><td align=\"right\">"._ADDDATE.": $fp_data</td></tr>"
Находим:
."<td width=\"33%\"><a href=index.php?name=$module_name&op=view_file&lid=$lid#$lid title=\"$f_title\">"._FILECOMMENTS.": $comment</a></td><td width=\"34%\" align=\"right\">"._FILEREITING.": ".vote_graphic($votes, $totalvotes)."</td></tr>";
заменяем на:
."<td width=\"33%\"><a href=\"index.php?name=$module_name&op=view_file&lid=$lid&title=".encodehtml($f_title)."#$lid\" title=\"$f_title\">"._FILECOMMENTS.": $comment</a></td><td width=\"34%\" align=\"right\">"._FILEREITING.": ".vote_graphic($votes, $totalvotes)."</td></tr>";
Функция cat(). Найти
."<td colspan=\"2\"><table border=\"0\" cellpadding=\"1\" cellspacing=\"0\"><tr><td>$zimg</td><td><a href=index.php?name=$module_name&op=view_file&lid=$lid title=\"$f_title\"><b>$f_title</b></a></td><td>".new_graphic($formatted)."</td></tr></table></td><td align=\"right\">"._ADDDATE.": $fp_data</td></tr>"
заменить на:
."<td colspan=\"2\"><table border=\"0\" cellpadding=\"1\" cellspacing=\"0\"><tr><td>$zimg</td><td><a href=\"index.php?name=$module_name&op=view_file&lid=$lid&title=".encodehtml($f_title)."\" title=\"$f_title\"><b>$f_title</b></a></td><td>".new_graphic($formatted)."</td></tr></table></td><td align=\"right\">"._ADDDATE.": $fp_data</td></tr>"
Находим:
."<td width=\"33%\"><a href=index.php?name=$module_name&op=view_file&lid=$lid#$lid title=\"$f_title\">"._FILECOMMENTS.": $comment</a></td><td width=\"34%\" align=\"right\">"._FILEREITING.": ".vote_graphic($votes, $totalvotes)."</td></tr>";
заменяем на:
."<td width=\"33%\"><a href=\"index.php?name=$module_name&op=view_file&lid=$lid&title=".encodehtml($f_title)."#$lid\" title=\"$f_title\">"._FILECOMMENTS.": $comment</a></td><td width=\"34%\" align=\"right\">"._FILEREITING.": ".vote_graphic($votes, $totalvotes)."</td></tr>";
Проверяем каталог файлов. Ссылки должны принять вид:
http://site.ru/index.php?name=Files&op=view_file&lid=123&title=Skachat_besplatno_igru_GTA_4_s_kryakom_i_dopolneniyami
Проблем с переходами по каталогу файлов возникать не должно (Если возникают, пишем в эту тему).
Третье.
Мы должны отстроить ЧПУ.
Делаем так:
Открываем
.htaccess, находим:
### Файлы
RewriteRule ^files-view-([0-9]*)-([0-9]*).html$ index.php?name=Files&op=view_file&lid=$1&pagenum=$2 [NC]
RewriteRule ^files-getfile-([0-9]*).html$ index.php?name=Files&op=getit&lid=$1 [NC]
RewriteRule ^files-new.html$ index.php?name=Files&new [NC]
RewriteRule ^files-print-([0-9]*).html$ index.php?name=Files&op=printe&id=$1 [NC]
RewriteRule ^files-view-([0-9]*)-([0-9]*).html$ index.php?name=Files&op=view&id=$1&num=$2 [NC]
RewriteRule ^files-view-([0-9]*)-word-(.*).html$ index.php?name=Files&op=view&id=$1 [NC]
RewriteRule ^files-view-([0-9]*).html$ index.php?name=Files&op=view_file&lid=$1 [NC]
RewriteRule ^files-broken-([0-9]*).html$ index.php?name=Files&op=broken&id=$1 [NC]
RewriteRule ^files-list-([0-9]*).html$ index.php?name=Files&op=liste&num=$1 [NC]
RewriteRule ^files-list.html$ index.php?name=Files&op=liste [NC]
RewriteRule ^files-add.html$ index.php?name=Files&op=add_file [NC]
RewriteRule ^files-best-([0-9]*).html$ index.php?name=Files&best=1&num=$1 [NC]
RewriteRule ^files-best.html$ index.php?name=Files&best=1 [NC]
RewriteRule ^files-hits-([0-9]*).html$ index.php?name=Files&hits=1&num=$1 [NC]
RewriteRule ^files-hits.html$ index.php?name=Files&hits [NC]
RewriteRule ^files-([0-9]*).html$ index.php?name=Files&num=$1 [NC]
RewriteRule ^files-cat-([0-9]*)-([0-9]*).html$ index.php?name=Files&op=cat&id=$1&pagenum=$2 [NC]
RewriteRule ^files-cat-([0-9]*).html$ index.php?name=Files&op=cat&id=$1 [NC]
RewriteRule ^files.html index.php?name=Files [NC]
После
###Файлы вставляем:
RewriteRule ^files-([0-9]*)-([%&;/:|\s\-\'{}().&_a-zA-Zа-яА-Я0-9+=-]*)$ index.php?name=Files&op=view_file&lid=$1&title=$2 [NC]
Сохраняем, закрываем.
Открываем
config/config_rewrite.php, находим:
// Файлы
"files-view-\\1-\\2.html",
"files-getfile-\\1.html",
"files-new.html",
"files-print-\\1.html",
"files-view-\\1-\\2.html",
"files-view-\\1.html",
"files-view-\\1.html",
"files-broken-\\1.html",
"files-list-\\1.html",
"files-list.html",
"files-add.html",
"files-best-\\1.html",
"files-best.html",
"files-hits-\\1.html",
"files-hits.html",
"files-\\1.html",
"files-cat-\\1-\\2.html",
"files-cat-\\1.html",
"files.html",
После
###Файлы вставляем:
"files-\\1-\\2",
Далее, находим:
// Файлы
"'(?<!/)index.php\?name=Files&op=view_file&lid=([0-9]*)&pagenum=([0-9]*)'",
"'(?<!/)index.php\?name=Files&op=getit&lid=([0-9]*)'",
"'(?<!/)index.php\?name=Files&new'",
"'(?<!/)index.php\?name=Files&op=printe&id=([0-9]*)'",
"'(?<!/)index.php\?name=Files&op=view&id=([0-9]*)&num=([0-9]*)'",
"'(?<!/)index.php\?name=Files&op=view&id=([0-9]*)&word=([%&;/:|\s\-\'{}().&_a-zA-Zа-яА-Я0-9+=-]*)'",
"'(?<!/)index.php\?name=Files&op=view_file&lid=([0-9]*)'",
"'(?<!/)index.php\?name=Files&op=broken&id=([0-9]*)'",
"'(?<!/)index.php\?name=Files&op=liste&num=([0-9]*)'",
"'(?<!/)index.php\?name=Files&op=liste'",
"'(?<!/)index.php\?name=Files&op=add_file'",
"'(?<!/)index.php\?name=Files&best=1&num=([0-9]*)'",
"'(?<!/)index.php\?name=Files&best=1'",
"'(?<!/)index.php\?name=Files&hits=1&num=([0-9]*)'",
"'(?<!/)index.php\?name=Files&hits'",
"'(?<!/)index.php\?name=Files&num=([0-9]*)'",
"'(?<!/)index.php\?name=Files&op=cat&id=([0-9]*)&pagenum=([0-9]*)'",
"'(?<!/)index.php\?name=Files&op=cat&id=([0-9]*)'",
"'(?<!/)index.php\?name=Files'",
После
###Файлы вставляем:
"'(?<!/)index.php\?name=Files&op=view_file&lid=([0-9]*)&title=([%&;/:|\s\-\'{}().&_a-zA-Zа-яА-Я0-9+=-]*)'",
Готово, включаем ЧПУ, проверяем.
Проверялось мною на совершенно голой SLAED 2.6.