Hi @MeasurableBusinessResults
These repeated managed_rewrite_maps:debug messages from mod_rewrite’s managed rewrite map feature that was introduced in Apache 2.4.54+. Even if you don’t use any RewriteMap directives, Apache still runs an internal periodic check for "managed maps," which produces these noisy debug log entries.
Override the log level per module
Disable debug logs from the managed_rewrite_maps module while keeping debug elsewhere.
In your Apache configuration (httpd.conf or equivalent, e.g. /etc/httpd/conf/httpd.conf or /etc/apache2/apache2.conf), add below
apache
RewriteOptions DisableManagedMaps
LogLevel debug
LogLevel managed_rewrite_maps:error
then reload apache
sudo systemctl reload httpd
Try using above,hope this helpful 🙂
Regards,
Karishma.