Настройка pretty URL
Материал из SRNS
Korogodin (обсуждение | вклад) |
Korogodin (обсуждение | вклад) |
||
Строка 2: | Строка 2: | ||
--more-- Первое: | --more-- Первое: | ||
− | |||
В LocalSettings.php: | В LocalSettings.php: | ||
Строка 15: | Строка 14: | ||
</source> | </source> | ||
− | Второе | + | Второе: |
В той же папке в .htaccess добавлено в конец: | В той же папке в .htaccess добавлено в конец: |
Текущая версия на 12:40, 3 апреля 2011
Задача решена в два действия.
Первое:
В LocalSettings.php:
## The URL base path to the directory containing the wiki;
## defaults for all runtime URL paths are based off of this.
## For more information on customizing the URLs please see:
## http://www.mediawiki.org/wiki/Manual:Short_URL
$wgScriptPath = "";
$wgArticlePath = "/wiki/$1";
$wgUsePathInfo = true;
## defaults for all runtime URL paths are based off of this.
## For more information on customizing the URLs please see:
## http://www.mediawiki.org/wiki/Manual:Short_URL
$wgScriptPath = "";
$wgArticlePath = "/wiki/$1";
$wgUsePathInfo = true;
Второе:
В той же папке в .htaccess добавлено в конец:
RewriteEngine On
RewriteRule ^wiki/(.*)$ /index.php?title=$1 [PT,L,QSA]
RewriteRule ^wiki/*$ /index.php [L,QSA]
RewriteRule ^wiki/(.*)$ /index.php?title=$1 [PT,L,QSA]
RewriteRule ^wiki/*$ /index.php [L,QSA]
[ Хронологический вид ]Комментарии
Войдите, чтобы комментировать.