Benutzer:Djdomi

Aus Winterberg Mod Wiki
Zur Navigation springen Zur Suche springen

Short Mediawiki URL to your.domain/MainPage

.htaccess

Options +FollowSymLinks
RewriteEngine On
#Change "wiki/" below to match your desired virtual path.
#Change "w/" to match your actual installation directory.
RewriteCond %{DOCUMENT_ROOT}%{REQUEST_URI} !-f
RewriteCond %{DOCUMENT_ROOT}%{REQUEST_URI} !-d
RewriteRule ^(.*)$ %{DOCUMENT_ROOT}/index.php [L]

custom_settings.php (or LocalSettings.php)

<?php
#Change "wiki/" below to match your desired virtual path.
$wgArticlePath = "/$1";
$wgUsePathInfo = true;