MAMP 中的 RewriteLog 和 RewriteLogLevel
我需要在 MAMP 中设置 RewriteLogLevel
来解决一些 mod_rewrite
问题。
我将以下行放入我的 httpd.conf
和本地 .htaccess
文件中,但我没有找到输出日志。我该如何正确设置?
RewriteLogLevel 9
RewriteLog“rewrite.log”
I need to set my RewriteLogLevel
in MAMP to figure out some mod_rewrite
problems.
I put the below lines in my httpd.conf
and my local .htaccess
file, but I am not finding a output log. How do I set this up correctly?
RewriteLogLevel 9
RewriteLog "rewrite.log"
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试使用完整路径,例如 /var/log/httpd/rewrite.log。
还要确保您已打开 mod_rewrite。
Try using a full path like /var/log/httpd/rewrite.log.
Also make sure you have mod_rewrite turned on.
Apache 默认情况下通常不启用 mod_rewrite,因此您可能需要向 httpd.conf 文件添加更多条目。
例如,您是否为 LoadModule 添加了一个指向 mod_rewrite.so 模块的条目?
检查此链接了解详细信息:
http:// michaelkrol.com/2005/11/21/enable-mod_rewrite-on-os-x-104-tiger/
另外,不要忘记重新启动 Apache 来测试您的更改。
Apache generally doesn't enable mod_rewrite by default, so you may need to add more entries to your httpd.conf file.
For instance, did you put in an entry for LoadModule that points to the mod_rewrite.so module?
Check this link for details:
http://michaelkrol.com/2005/11/21/enable-mod_rewrite-on-os-x-104-tiger/
Also, don't forget to restart Apache to test your changes.