「利用者:Admin」の版間の差分
提供: HIMOROGI文化財Wiki
(→システム関連) |
(→システム関連) |
||
7行目: | 7行目: | ||
*'''LocalSettings.phpはこうです。'''<br /> | *'''LocalSettings.phpはこうです。'''<br /> | ||
<code> | <code> | ||
− | $wgScriptPath = "/wiki";<br /> | + | :$wgScriptPath = "/wiki";<br /> |
− | $wgScript = "$wgScriptPath/index.php";<br /> | + | :$wgScript = "$wgScriptPath/index.php";<br /> |
− | $wgRedirectScript = "$wgScriptPath/redirect.php";<br /> | + | :$wgRedirectScript = "$wgScriptPath/redirect.php";<br /> |
− | $wgArticlePath = "$wgScriptPath/$1";<br /> | + | :$wgArticlePath = "$wgScriptPath/$1";<br /> |
</code> | </code> | ||
17行目: | 17行目: | ||
*'''.htaccessはこうです。'''<br /> | *'''.htaccessはこうです。'''<br /> | ||
<code> | <code> | ||
− | RewriteEngine on<br /> | + | :RewriteEngine on<br /> |
− | RewriteBase /wiki/<br /> | + | :RewriteBase /wiki/<br /> |
− | RewriteCond %{REQUEST_FILENAME} !-f<br /> | + | :RewriteCond %{REQUEST_FILENAME} !-f<br /> |
− | RewriteCond %{REQUEST_FILENAME} !-d<br /> | + | :RewriteCond %{REQUEST_FILENAME} !-d<br /> |
− | RewriteRule ^(.+)$ index.php?title=$1 [L,QSA]<br /> | + | :RewriteRule ^(.+)$ index.php?title=$1 [L,QSA]<br /> |
<br /> | <br /> | ||
</code> | </code> |
2016年4月19日 (火) 15:12時点における版
システム関連
- MediaWikiで生成されるURLを短くする設定方法
- ウィキペディアやその他大手のWiki系サイトのように、「ドメイン/wiki/ページタイトル」のようにしたい場合は、「wiki」フォルダを作ってそこの場所にMediaWikiをインストールした上でファイルに追記します。
- LocalSettings.phpはこうです。
- $wgScriptPath = "/wiki";
- $wgScript = "$wgScriptPath/index.php";
- $wgRedirectScript = "$wgScriptPath/redirect.php";
- $wgArticlePath = "$wgScriptPath/$1";
- .htaccessはこうです。
- RewriteEngine on
- RewriteBase /wiki/
- RewriteCond %{REQUEST_FILENAME} !-f
- RewriteCond %{REQUEST_FILENAME} !-d
- RewriteRule ^(.+)$ index.php?title=$1 [L,QSA]