Last update at :2024-07-10,Edit by888u
WP Fastest Cache, the simplest and fastest WP caching system.
1. It is free. Just search for WP Fastest Cache in the background and install it.
2. Download the WP Fastest Cache premium cracked version: wp-fastest -cache-premium
Remember not to update! Also don't delete the free version!
3. WP Fastest Cache configures Nginx to achieve true staticization The following configuration can make your WP Fastest Cache truly completely static (even if the PHP process hangs up, the website can still run normally)
location/{ # If the requested file already exists, return directly if (-f $request_filename) { break; } set $caches 1; #Whether to cache set $request_file $document_uri; #Get the request file set $cache_file ''; #Cache file #The request method is POST and does not intercept if ($request_method = POST) { set $caches 0; } #Do not intercept those containing GET request parameters (can be commented out if the number of visits is high) if ($query_string) { set $caches 0; } #Specify the path to the static cache file if ($caches = 0) { set $request_file ''; } if ($request_file ~ ^(.+)$) { set $cache_file /wp-content/cache/all/$1/index.html; #Your WP Fastest Cache cache directory } # Hit cache if (-f $document_root$cache_file) { rewrite ^ $cache_file last; } # Unable to hit cache, transfer to WordPress for processing if (!-e $request_filename) { rewrite ./index.php last;Then take a look and see if your website opens much faster.
The following is an uncommented version and can be used directly on the pagoda panel.
location/{ if (-f $request_filename) { break; } set $caches 1; set $request_file $document_uri; set $cache_file ''; if ($request_method = POST) { set $caches 0; } if ($query_string) { set $caches 0; } if ($caches = 0) { set $request_file ''; } if ($request_file ~ ^(.+)$) { set $cache_file /wp-content/cache/all/$1/index.html; } if (-f $document_root$cache_file) { rewrite ^ $cache_file last; } if (!-e $request_filename) { rewrite ./index.php last; } } rewrite /wp-admin$ $scheme://$host$uri/ permanent;If you want to check whether it has taken effect in the header, add the following code:
location /wp-content/cache/all/ { #This line is your WP Fastest Cache cache file path add_header Cache HIT; #Add header to indicate a cache hit }Configuration transferred from: https://huhonggang.com/dis/159.html
My configuration:
Recommended site search: how to register a domain name, free US hosting, mysql virtual hosting, how much does website registration cost, telecommunications server rental, Zhejiang server, server space rental, free proxy ip, asp free space application, independent ip virtual host, < /p>
发表评论