|
Apache設定
PHP4をインストールした所で、色々設定をします。
httpd.confの設定
# vi /etc/conf/httpd.conf
DocumentRoot /var/www ← ドキュメントルート
<Directory /mnt/www/> ← ドキュメントルートの設定開始
をWEBページを構築するディレクトリに変更する。
Sambaで共有化した/mnt/wwwにすると便利。
Options SymLinksIfOwnerMatch ←MultiViews機能(index.htmlが存在しない場合、ファイル一覧を表示する)
AllowOverride None ← .httpaccessファイルによる各種設定の変更を禁止
の二行をコメントにする。
# Options SymLinksIfOwnerMatch
# AllowOverride None
Apacheの再起動
/etc/init.d/apache restart
|
|
|
|
|