id === 'options-permalink' || $screen->id === 'settings')) {
echo '
';
echo '
Protected: .htaccess file is locked and cannot be modified by WordPress for security reasons.
';
echo '
';
}
}
});
// Log any attempts to write to .htaccess (for debugging)
if (defined('WP_DEBUG') && WP_DEBUG) {
add_action('admin_init', function() {
$backtrace = debug_backtrace(DEBUG_BACKTRACE_IGNORE_ARGS, 10);
foreach ($backtrace as $trace) {
if (isset($trace['function']) &&
(strpos($trace['function'], 'htaccess') !== false ||
strpos($trace['function'], 'rewrite') !== false ||
strpos($trace['function'], 'save_mod') !== false)) {
error_log('BLOCKED: Attempt to modify .htaccess from ' . $trace['function']);
}
}
});
}