HEX
Server: LiteSpeed
System: Linux s166.bitcommand.com 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64
User: h340499 (1922)
PHP: 8.2.16
Disabled: exec,system,passthru,shell_exec,proc_close,proc_open,dl,popen,show_source,posix_kill,posix_mkfifo,posix_getpwuid,posix_setpgid,posix_setsid,posix_setuid,posix_setgid,posix_seteuid,posix_setegid,posix_uname
Upload Files
File: /home/h340499/public_html/wp-content/plugins/wp-rocket/inc/3rd-party/hosting/nginx.php
<?php

defined( 'ABSPATH' ) || exit;

/**
 * Compatibility with an usual NGINX configuration which include:
 *      try_files $uri $uri/ /index.php?q=$uri&$args
 *
 * @since 2.3.9
 *
 * @param array $query_strings Array of query strings to cache.
 *
 * @return array Updated array of query strings.
 */
function rocket_better_nginx_compatibility( $query_strings ) {
	global $is_nginx;

	if ( $is_nginx ) {
		$query_strings[] = 'q';
	}

	return $query_strings;
}
add_filter( 'rocket_cache_query_strings', 'rocket_better_nginx_compatibility' );