Rewriteログの設定
Windows環境でRewriteのログを取得するための設定
httpd-vhosts.confの設定
RewriteLogとRewriteLogLevelを追加。
RewriteLogLevelは0~9(0はログ非出力)を必要に応じて変更。
C:\Program Files\Apache Software Foundation\Apache2.2\conf\extra下。
<VirtualHost *:80>
ServerAdmin appli@appli.localhost
DocumentRoot "C:/appli/www"
ServerName appli.localhost
ErrorLog "logs/appli.localhost-error.log"
CustomLog "logs/appli.localhost-access.log" common
RewriteLog "logs/appli.localhost-rewrite.log"
RewriteLogLevel 3
<Directory "C:/appli/www">
Order deny,allow
Allow from all
</Directory>
</VirtualHost>
設定後、Apacheを再起動。
ログはC:\Program Files\Apache Software Foundation\Apache2.2\logs下。