My magento store has this in the htaccess:
## TRACE and TRACK HTTP methods disabled to prevent XSS attacks
RewriteCond %{REQUEST_METHOD} ^TRAC[EK]
RewriteRule .* - [L,R=405]
I would like to log what is going on in my htaccess process. I have tried adding this code:
RewriteLog "/var/log/apache2/rewrite.log"
RewriteLogLevel 2
But I'm getting an "Internal Server Error" or a Not Found erro when run it with the RewriteLog lines.
Any tips / help?
Thanks!