On Apr 11, 2005 10:19 PM, Byortek wiki wiki@byortek.com wrote:
When the browser calls smallpc.dyndns.org/wiki, somehow mediawiki tells the browser (through apache) to redirect (status 301) the call to the private url smallpc.home/wiki
Aha; I think you need to add a line in your "LocalSettings.php" file defining $wgServer; otherwise it will be automatically detected each time from the apache settings (I think). e.g.
$wgServer = "http://smallpc.dyndns.org";
[AFAICS, it will still be auto-detected in DefaultSettings.php, but this will then override it since LocalSettings.php is evaluated later.]