13,005
回編集
(→前準備) |
|||
4行目: | 4行目: | ||
== 前準備 == | == 前準備 == | ||
MediaWikiディレクトリにあるimagesディレクトリのパーミッションと所有者および所有グループを以下のように変更する。<br> | |||
sudo chmod 777 images images/temp images/thumb images/archive | sudo chmod 777 images images/temp images/thumb images/archive | ||
sudo chown -R <ユーザ名>:<ユーザグループ名> images/ | sudo chown -R <ユーザ名>:<ユーザグループ名> images/ | ||
<br> | <br> | ||
次に、imagesディレクトリに存在する.htaccessファイルを以下のように編集する。<br> | 次に、imagesディレクトリに存在する.htaccessファイルを以下のように編集する。<br> | ||
# 修正前 | |||
# | |||
<IfModule rewrite_module> | <IfModule rewrite_module> | ||
RewriteEngine On | |||
RewriteOptions inherit | |||
RewriteCond %{QUERY_STRING} \.[^\\/:*?\x22<>|%]+(#|\?|$) [nocase] | |||
RewriteRule . - [forbidden] | |||
# Fix for bug T64289 | |||
Options +FollowSymLinks | |||
</IfModule> | </IfModule> | ||
# 修正後 | |||
# | |||
<IfModule rewrite_module> | <IfModule rewrite_module> | ||
RewriteEngine On | |||
RewriteOptions inherit | |||
RewriteCond %{QUERY_STRING} \.[^\\/:*?\x22<>|%]+(#|\?|$) [nocase] | |||
RewriteRule . - [forbidden] | |||
# Fix for bug T64289 | |||
# Options +FollowSymLinks | |||
</IfModule> | </IfModule> | ||
<br><br> | <br><br> |