Create your own Apache Rewrite Log file

How to Create your own Apache Rewrite Log file ?
If your account is hosted on suexec server then you need to add this code in http.conf file otherwise you can enable it by using .htaccess file.
By using  http.conf file
You need to
=============================
# Roll your own Rewrite log
# Log details via scale of 1 to 9
# 1 = few details, 5 = enough details, 9 = too much detail
RewriteEngine On
RewriteLog “/home/username/public_html/rewrite.log”
RewriteLogLevel 5
=============================
By using  .htaccess file

============================
# Roll your own Rewrite log
# Log details via scale of 1 to 9
# 1 = few details, 5 = enough details, 9 = too much detail
RewriteEngine On
RewriteLog “/home/username/public_html/rewrite.log”
RewriteLogLevel 5
=============================
Note : Replace the absolute path for rewrite.log file.

Leave a Comment