Manual:$wgServer
サーバー URL とファイル パス: $wgServer | |
---|---|
サーバーの基底 URL。 |
|
導入されたバージョン: | 1.1.0 未満 |
除去されたバージョン: | 使用中 |
許容される値: | (URLのプレフィックス(プロトコル、ホスト、オプション等)) |
既定値: | (下記参照) |
その他の設定: アルファベット順 | 機能順 |
詳細
This variable is normally set by the MediaWiki installer, but may need to be adjusted after your LocalSettings.php
is generated.
The base URL of the server, including protocol but without the trailing slash and without the subdirectory if any (e.g., https://www.mediawiki.org
).
Since version 1.18.0 MediaWiki also supports setting $wgServer
to a protocol-relative URL (e.g., //www.mediawiki.org
).
This is used for supporting both HTTP and HTTPS with the same caches by using links that work under both protocols. When doing this, $wgCanonicalServer
can be used to set the full URL including protocol that will be used in locations such as emails that do not support protocol relative URLs.
If the URL starts with https://
, MediaWiki will assume that your wiki prefers the HTTPS protocol or supports it exclusively.
In that case, you should also set $wgForceHTTPS
. See Manual:HTTPS for more information.
The setting to this configuration parameters is used when producing fully-qualified URLs pointing to the wiki, for instance:
- HTTP redirects on edit and to canonical URL spellings
- print footer
- links to articles from RSS/Atom feeds
- links to articles from notification emails
- and more!
$wgServer
is set to your actual base URL and not to http://localhost
(unless you actually want to only access MediaWiki through your localhost). オーバーワイズのリンクは機能しません。
自動検出
MediaWiki formerly tried to autodetect the name of the server, however this was vulnerable to cache poisoning attacks, and informally deprecated in 1.18. バージョン1.34で完全に除去されました。
既定値
MediaWiki バージョン: | ≧ 1.34 |
$wgServer = false;
MediaWiki バージョン: | 1.18 – 1.33 |
$wgServer = WebRequest::detectServer();
MediaWiki バージョン: | 1.17 |
$wgServer = '';
$wgServer = $wgProto.'://' . $serverName;
MediaWiki バージョン: | 1.4 – 1.16 |
$wgServer = '';
$wgServer = $wgProto.'://' . $wgServerName;
MediaWiki バージョン: | 1.3 |
$wgServer = $wgProto.'://' . $wgServerName;
MediaWiki バージョン: | 1.2 |
$wgServer = "http://" . $_SERVER["SERVER_NAME"];
MediaWiki バージョン: | 1.1 |
$wgServer = "http://" . getenv( "SERVER_NAME" );