/usr/local/etc/apache/httpd.conf の編集
変更前:ServerAdmin [email protected]
変更後:ServerAdmin [email protected]
変更前:#ServerName new.hosy.name
変更後:ServerName nice.kaze.com
変更前:Timeout 300
変更後:Timeout 7200
以下の記述を追加する。#でコメントアウトされていない部分。
この追加で /home/hkita/public_html ディレクトリと /usr/local/www/data ディレクトリで .htaccess ファイルが有効になります。
#
# Control access to UserDir directories. The following is an example
# for a site where these directories are restricted to read-only.
#
#<Directory /home/*/public_html>
# AllowOverride FileInfo AuthConfig Limit
# Options MultiViews Indexes SymLinksIfOwnerMatch IncludesNoExec
# <Limit GET POST OPTIONS PROPFIND>
# Order allow,deny
# Allow from all
# </Limit>
# <LimitExcept GET POST OPTIONS PROPFIND>
# Order deny,allow
# Deny from all
# </LimitExcept>
#</Directory>
<Directory /home/hkita/public_html>
AllowOverride All
</Directory>
<Directory /usr/local/www/data>
AllowOverride All
</Directory>
変更後、
nice# /usr/local/sbin/apachectl restart
で変更パラメータを読み込ませる。