ShortURL
From OpenOffice.org Wiki
The Short URL functionality is a "must have" for all wiki updates (used in previous OOoWiki releases, and must be maintained or external links into the wiki will be broken)
To enable Short URL on the new wiki:
Edit /opt/coolstack/apache2/conf/httpd.conf and add these Aliases. Remove any other Alias statements that reference the wiki.
Alias /w /space/mwiki Alias /mwiki /space/mwiki Alias /wiki /space/mwiki/index.php Alias /index.php /space/mwiki/index.php
Edit LocalSettings.php and add/change these lines:
$wgScriptPath = "/w"; $wgScript = "$wgScriptPath/index.php"; $wgArticlePath = "/wiki/$1"; $wgStylePath = "$wgScriptPath/skins"; $wgStyleDirectory = "$IP/skins";
The LocalSettings.php variable $wgScriptPath can be set to anything as long as you match that variable setting with an Alias in the httpd.conf. eg If you set $wgScriptPath = "/foo"; in LocalSettings.php then you must set Alias /foo /space/mwiki in httpd.conf.
You must set the Style variables or the wiki skins will not be loaded when you view a wiki page.

