MAMP 中的 RewriteLog 和 RewriteLogLevel

发布于 2024-10-10 02:08:00 字数 264 浏览 3 评论 0原文

我需要在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

拔了角的鹿 2024-10-17 02:08:00

尝试使用完整路径,例如 /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.

生活了然无味 2024-10-17 02:08:00

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文