我有一个.htaccess,它看起来像这样:
RewriteEngine on
RewriteLog "/Applications/MAMP/logs/rewrite_engine_log"
RewriteCond %{REQUEST_URI} !/(index.php|css|images|js)/.*$
RewriteRule (.*) /mysite/index.php/$1
当我添加该RewriteLog指令时,出现内部服务器错误。
在Apache日志文件中,我得到以下信息:
/Applications/MAMP/htdocs/mysite/.htaccess: RewriteLog not allowed here
我没有手动创建该rewrite_engine_log文件,但是该路径/ Applications / MAMP / logs /在我的Mac上存在。接下来我可以尝试什么来获取RewriteEngine日志文件?