による この記事 から MediaWiki.org 認識されていないプロトコルを許可するために、あなたのウィキインスタンスの設定を変更する必要があるかもしれません。 ノート:// 。
記事から:
MediaWiki 1.20.0のデフォルト値は
$wgUrlProtocols = array(
'http://',
'https://',
'ftp://',
'irc://',
'ircs://', // @bug 28503
'gopher://',
'telnet://', // Well if we're going to support the above.. -ævar
'nntp://', // @bug 3808 RFC 1738
'worldwind://',
'mailto:',
'news:',
'svn://',
'git://',
'mms://',
'//', // for protocol-relative URLs
);
プロトコルを最後に追加する必要があります(このようなもの)
$wgUrlProtocols = array(
'http://',
'https://',
'ftp://',
'irc://',
'ircs://', // @bug 28503
'gopher://',
'telnet://', // Well if we're going to support the above.. -ævar
'nntp://', // @bug 3808 RFC 1738
'worldwind://',
'mailto:',
'news:',
'svn://',
'git://',
'mms://',
'notes://',
'//', // for protocol-relative URLs
);