差分

このページの2つのバージョン間の差分を表示します。

この比較画面へのリンク

両方とも前のリビジョン前のリビジョン
次のリビジョン
前のリビジョン
dokuwiki:landto [2006/11/17] admindokuwiki:landto [不明な日付] (現在) – 外部編集 (不明な日付) 127.0.0.1
行 1: 行 1:
 +====== land.toに設置するときの注意 ======
 +===== インストール =====
 +
 +  - ダウンロードしたファイルを解凍し、アップロード
 +  - dokuwiki/install.phpを実行。管理者を設定。FTPユーザーと同じユーザーで動作するので、パーミッションの設定は、不要。
 +  - dokuwiki/.htaccessに以下のコードを追記<code>
 +php_value default_charset UTF-8 
 +php_value mbstring.language neutral 
 +php_value mbstring.internal_encoding UTF-8 
 +php_value mbstring.encoding_translation Off 
 +php_value mbstring.http_input auto 
 +php_value mbstring.http_output pass 
 +</code>
 +
 +===== 広告対策 =====
 +  - dokuwikiルートの.htaccessに追記<code>
 +<Files *css.php>
 +    LayoutIgnoreURI *css.php
 +</Files>
 +
 +<Files *feed.php>
 +    LayoutIgnoreURI *feed.php
 +</Files>
 +
 +<Files ^_*>
 +    LayoutIgnoreURI ^_*
 +</Files>
 +</code>
 +  - libディレクトリに.htaccessを配置<code>
 +LayoutIgnoreURI *
 +</code>