Invalid command 'RewriteLog' - apache2.4版本配置方法变了

南楼画角 提交于 2020-03-21 09:15:55

 以前这么配置:

...
RewriteLog logs/gidapp.rewrite_log
RewriteLogLevel 3
RewriteEngine On
...
LogLevel warn
...

改为:

...
RewriteEngine On
...
LogLevel warn rewrite:trace3
...

查看日志:

tail -f /usr/local/apache/logs/error_log
[Sat Mar 21 08:21:34.518820 2020] [rewrite:trace3] [pid 5618:tid 2482998080] mod_rewrite.c(483): ....

调试完还是关掉的好,避免增加服务器负载。

From the official Apache 2.4 Documentation page: Apache Module mod_rewrite

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!