Title: Nginx Helper
Author: rtCamp
Published: <strong>2012-يىلى 28-سېنتەبىر</strong>
Last modified: 2025-يىلى 21-ئاۋغۇست

---

قىستۇرما ئىزدە

![](https://ps.w.org/nginx-helper/assets/banner-772x250-rtl.png?rev=2360932)

![](https://ps.w.org/nginx-helper/assets/icon.svg?rev=2360932)

# Nginx Helper

 يازغۇچى [rtCamp](https://profiles.wordpress.org/rtcamp/)

[چۈشۈر](https://downloads.wordpress.org/plugin/nginx-helper.2.3.5.zip)

 * [تەپسىلاتلار](https://ug.wordpress.org/plugins/nginx-helper/#description)
 * [باھالاشلار](https://ug.wordpress.org/plugins/nginx-helper/#reviews)
 *  [ئورنىتىش](https://ug.wordpress.org/plugins/nginx-helper/#installation)
 * [ئىجادىيەت](https://ug.wordpress.org/plugins/nginx-helper/#developers)

 [قوللاش](https://wordpress.org/support/plugin/nginx-helper/)

## چۈشەندۈرۈش

 1. Removes `index.php` from permalinks when using WordPress with nginx.
 2. Adds support for purging redis-cache when used as full-page cache created using
    [nginx-srcache-module](https://github.com/openresty/srcache-nginx-module#caching-with-redis)
 3. Adds support for nginx fastcgi_cache_purge & proxy_cache_purge directive from [module](https://github.com/FRiCKLE/ngx_cache_purge).
    Provides settings so you can customize purging rules.
 4. Adds support for nginx `map{..}` on a WordPress-multisite network installation.
    Using it, Nginx can serve PHP file uploads even if PHP/MySQL crashes. Please check
    the tutorial list below for related Nginx configurations.

#### Tutorials

You will need to follow one or more tutorials below to get desired functionality:

 * [Nginx Map + WordPress-Multisite + Static Files Handling](https://easyengine.io/wordpress-nginx/tutorials/multisite/static-files-handling/)
 * [Nginx + WordPress + fastcgi_purge_cache](https://easyengine.io/wordpress-nginx/tutorials/single-site/fastcgi-cache-with-purging/)
 * [Nginx + WordPress-Multisite (Subdirectories) + fastcgi_purge_cache](https://easyengine.io/wordpress-nginx/tutorials/multisite/subdirectories/fastcgi-cache-with-purging/)
 * [Nginx + WordPress-Multisite (Subdomains/domain-mapping) + fastcgi_purge_cache](https://easyengine.io/wordpress-nginx/tutorials/multisite/subdomains/fastcgi-cache-with-purging/)
 * [Other WordPress-Nginx Tutorials](https://easyengine.io/wordpress-nginx/tutorials/)

## ئېكران كەسمىسى

 * [[
 * Nginx plugin settings
 * [[
 * Remaining settings

## ئورنىتىش

Automatic Installation

 1. Log in to your WordPress admin panel, navigate to the Plugins menu and click Add
    New.
 2. In the search field type “Nginx Helper” and click Search Plugins. From the search
    results, pick Nginx Helper and click Install Now. WordPress will ask you to confirm
    to complete the installation.

Manual Installation

 1. Extract the zip file.
 2. Upload them to `/wp-content/plugins/` directory on your WordPress installation.
 3. Then activate the Plugin from Plugins page.

For proper configuration, check out our **tutorial list** in the [Description tab](https://wordpress.org/extend/plugins/nginx-helper).

## FAQ

**Important** – Please refer to [https://github.com/rtcamp/nginx-helper#frequently-asked-questions](https://github.com/rtcamp/nginx-helper#frequently-asked-questions)
for up-to-date FAQs.

### FAQ – Installation/Comptability

**Q. Will this work out of the box?**

No. You need to make some changes at the Nginx end. Please check our [tutorial list](https://easyengine.io/wordpress-nginx/tutorials/).

### FAQ – Nginx Fastcgi Cache Purge

**Q. There’s a ›purge all‹ button? Does it purge the whole site?**

Yes, it does. It physically empties the cache directory. It is set by default to`/
var/run/nginx-cache/`.

If your cache directory is different, you can override this in your wp-config.php
by adding
 define(›RT_WP_NGINX_HELPER_CACHE_PATH‹,’/var/run/nginx-cache/‹);

Replace the path with your own.

**Q. Does it work for custom posts and taxonomies?**

Yes. It handles all post-types the same way.

**Q. How do I know my Nginx config is correct for fastcgi purging?**

Manually purging any page from the cache, by following instructions in the previous
answer.

Version 1.3.4 onwards, Nginx Helper adds a comment at the end of the HTML source(›
view source‹ in your favourite browser):
 <!–Cached using Nginx-Helper on 2012-10-
08 07:01:45. It took 42 queries executed in 0.280 seconds.–>. This shows the time
when the page was last cached. This date/time will be reset whenever this page is
purged and refreshed in the cache. Just check this comment before and after a manual
purge.

As long as you don’t purge the page (or make changes that purge it from the cache),
the timestamp will remain as is, even if you keep refreshing the page. This means
the page was served from the cache and it’s working!

The rest shows you the database queries and time saved on loading this page. (This
would have been the additional resource load, if you weren’t using fast-cgi-cache.)

**Q. I need to flush a cached page immediately! How do I do that?**

Nginx helper plugin handles usual scenarios, when a page in the cache will need 
purging. For example, when a post is edited or a comment is approved on a post.

To purge a page immediately, follow these instructions:

 * Let’s say we have a page at the following domain: http://yoursite.com/about.
 * Between the domain name and the rest of the URL, insert ›/purge/‹.
 * So, in the above example, the purge URL will be http://yoursite.com/purge/about.
 * Just open this in a browser and the page will be purged instantly.
 * Needless to say, this won’t work, if you have a page or taxonomy called ›purge‹.

**Q. Does it need any kind of URL structure?**

Yes. When setting the URL structure in Nginx configuration file a trailing slash
should always be added.

### FAQ – Nginx Redis Cache

**Q. Can I override the redis hostname, port and prefix?**

Yes, you can force override the redis hostname, port or prefix by defining constant
in wp-config.php. For example:

    ```
    `
    ```

define(›RT_WP_NGINX_HELPER_REDIS_HOSTNAME‹, ›10.0.0.1‹);

define(›RT_WP_NGINX_HELPER_REDIS_PORT‹, ›6000‹);

define(›RT_WP_NGINX_HELPER_REDIS_PREFIX‹, ›page-cache:‹);
 `

**Q. Can I override the redis socket path, username, password?**

Yes, you can force override the redis socket path, username, password by defining
constant in wp-config.php. For example:

    ```
    `php
    ```

define( ›RT_WP_NGINX_HELPER_REDIS_UNIX_SOCKET‹, ›/var/run/redis/redis.sock‹ );

define( ›RT_WP_NGINX_HELPER_REDIS_USERNAME‹, ›admin‹ );

define( ›RT_WP_NGINX_HELPER_REDIS_PASSWORD‹, ›admin‹ );
 `

### FAQ – Nginx Map

**Q. My multisite already uses `WPMU_ACCEL_REDIRECT`. Do I still need Nginx Map?**

Definitely. `WPMU_ACCEL_REDIRECT` reduces the load on PHP, but it still ask WordPress
i.e. PHP/MySQL to do some work for static files e.g. images in your post. Nginx 
map lets nginx handle files on its own bypassing wordpress which gives you much 
better performance without using a CDN.

**Q. I am using X plugin. Will it work on Nginx?**

Most likely yes. A wordpress plugin, if not using explicitly any Apache-only mod,
should work on Nginx. Some plugin may need some extra work.

### FAQ – WP-CLI

**Q. How can I update the options using WP-CLI?**

    ```
    `shell
    ```

wp option patch update rt_wp_nginx_helper_options
 `

### Still need help!

Please post your problem in [our free support forum](https://github.com/rtCamp/nginx-helper/issues).

## باھالاشلار

![](https://secure.gravatar.com/avatar/aa1bf9fb035ad70c01eeb9775cd78d4d5ae3d12870868eeebbb69821791e86bd?
s=60&d=retro&r=g)

### 󠀁[Very Good](https://wordpress.org/support/topic/very-good-7228/)󠁿

 [shahinsafari](https://profiles.wordpress.org/shahinsafari/) 2024-يىلى 27-فېۋرال

tanks very good

![](https://secure.gravatar.com/avatar/3a99f77349b48445e12961e8422faa2724706ea21d189cfdf004126d008ac6d9?
s=60&d=retro&r=g)

### 󠀁[Awesome plugin!](https://wordpress.org/support/topic/awesome-plugin-6585/)󠁿

 [Pavel Richter](https://profiles.wordpress.org/forqy/) 2022-يىلى 14-سېنتەبىر

Simple setup and everything works as it should! Thanks

![](https://secure.gravatar.com/avatar/403d9cbdba5c078ef9203f0610526f89060ab6d43959faa1f7edcf7bef977b16?
s=60&d=retro&r=g)

### 󠀁[Useless – Waste of time](https://wordpress.org/support/topic/useless-waste-of-time-4/)󠁿

 [Mostafiz Shamim](https://profiles.wordpress.org/itzmostafiz/) 2022-يىلى 29-ئىيۇل

It doesn’t work at all. It provides outdated content link to setup the cache module
but that is also useless. Do not waste your time installing this plugin.

![](https://secure.gravatar.com/avatar/a461061e3dea1ab01899c792818fb08183d3913cab88490066ec82bfe45638e9?
s=60&d=retro&r=g)

### 󠀁[Works well 🙂](https://wordpress.org/support/topic/works-well-2540/)󠁿

 [druut](https://profiles.wordpress.org/emkemk/) 2022-يىلى 25-ماي

Clears cache when updating pages & posts as expected. Also great that it has a logging
functionality, which allowed me to debug some problems.

![](https://secure.gravatar.com/avatar/08e90f650da966e8795d555fb8e7cf732e89fd0f4fb187b33f7e1d040a3771a4?
s=60&d=retro&r=g)

### 󠀁[Work like a charm](https://wordpress.org/support/topic/work-like-a-charm-102/)󠁿

 [Rian Adelio](https://profiles.wordpress.org/rianadelio/) 2022-يىلى 3-ماي

Nice plugin to manage your cache. The setup is quite simple! Just follow the instructions
and you will be fine

![](https://secure.gravatar.com/avatar/7fe701ebf2c6c4ac54820b0e6b65b0cb3376c1cc11b6b402d0924397772586cc?
s=60&d=retro&r=g)

### 󠀁[Unusable](https://wordpress.org/support/topic/unusable-49/)󠁿

 [olly connelly](https://profiles.wordpress.org/the_guv/) 2021-يىلى 31-ئاۋغۇست 2
replies

Had high hopes but to be able to use this plugin to best potential you need to add
a repository, according to the relevant guide which seems to date back 9 years. 
Errors:- E: The repository ›http://ppa.launchpad.net/rtcamp/nginx/ubuntu focal Release‹
does not have a Release file. N: Updating from such a repository can’t be done securely,
and is therefore disabled by default. So what’s the point? I may be missing something(
such as a guide that works? Am using your recommendation: https://easyengine.io/
wordpress-nginx/tutorials/single-site/fastcgi-cache-with-purging/) so sort that 
out, let me know, and I’ll gladly update this review. Meantime, damn, that was a
few hours wasted.

 [ 31 باھالاشنىڭ ھەممىنى ئوقۇش ](https://wordpress.org/support/plugin/nginx-helper/reviews/)

## تۆھپىكار ۋە ئىجادكار

«Nginx Helper» كودى ئوچۇق يۇمشاق دېتال. تۆۋەندىكى كىشىلەر بۇ قىستۇرمىغا تۆھپە قوشقان.

تۆھپىكار

 *   [ rtCamp ](https://profiles.wordpress.org/rtcamp/)
 *   [ Rahul Bansal ](https://profiles.wordpress.org/rahul286/)
 *   [ Saurabh ](https://profiles.wordpress.org/saurabhshukla/)
 *   [ Manish Songirkar ](https://profiles.wordpress.org/manishsongirkar36/)
 *   [ faishal ](https://profiles.wordpress.org/faishal/)
 *   [ Udit Desai ](https://profiles.wordpress.org/desaiuditd/)
 *   [ Darren Slatten ](https://profiles.wordpress.org/darren-slatten/)
 *   [ jk3us ](https://profiles.wordpress.org/jk3us/)
 *   [ Daan Kortenbach ](https://profiles.wordpress.org/daankortenbach/)
 *   [ Telofy ](https://profiles.wordpress.org/telofy/)
 *   [ pjv ](https://profiles.wordpress.org/pjv/)
 *   [ llonchj ](https://profiles.wordpress.org/llonchj/)
 *   [ jinnko ](https://profiles.wordpress.org/jinnko/)
 *   [ weskoop ](https://profiles.wordpress.org/weskoop/)
 *   [ Ben Cole ](https://profiles.wordpress.org/bcole808/)
 *   [ Pete Nelson ](https://profiles.wordpress.org/gungeekatx/)
 *   [ Rohan Veer ](https://profiles.wordpress.org/rohanveer/)
 *   [ Chandra Patel ](https://profiles.wordpress.org/chandrapatel/)
 *   [ Gagan Deep Singh ](https://profiles.wordpress.org/gagan0123/)
 *   [ Michael Beil ](https://profiles.wordpress.org/michaelbeil/)
 *   [ samedwards ](https://profiles.wordpress.org/samedwards/)
 *   [ niwreg ](https://profiles.wordpress.org/niwreg/)
 *   [ Zlatev ](https://profiles.wordpress.org/entr/)
 *   [ nuvoPoint ](https://profiles.wordpress.org/nuvopoint/)
 *   [ iam404 ](https://profiles.wordpress.org/iam404/)
 *   [ Ritesh Patel ](https://profiles.wordpress.org/ritteshpatel/)
 *   [ Vishal Kakadiya ](https://profiles.wordpress.org/vishalkakadiya/)
 *   [ Bunty ](https://profiles.wordpress.org/bhargavbhandari90/)
 *   [ bryant1410 ](https://profiles.wordpress.org/bryant1410/)
 *   [ 1gor ](https://profiles.wordpress.org/1gor/)
 *   [ dotsam ](https://profiles.wordpress.org/dotsam/)
 *   [ nathanielks ](https://profiles.wordpress.org/nathanielks/)
 *   [ rigagoogoo ](https://profiles.wordpress.org/rigagoogoo/)
 *   [ dslatten ](https://profiles.wordpress.org/dslatten/)
 *   [ jinschoi ](https://profiles.wordpress.org/jinschoi/)
 *   [ Kelin Chauhan ](https://profiles.wordpress.org/kelin1003/)
 *   [ vaishaliagola27 ](https://profiles.wordpress.org/vaishuagola27/)
 *   [ Rahul Prajapati ](https://profiles.wordpress.org/rahulsprajapati/)
 *   [ Utkarsh ](https://profiles.wordpress.org/utkarshpatel/)
 *   [ Imran Sayed ](https://profiles.wordpress.org/gsayed786/)
 *   [ Shashwat Mittal ](https://profiles.wordpress.org/shashwatmittal/)
 *   [ Sudhir Yadav ](https://profiles.wordpress.org/sudhiryadav/)
 *   [ Thrijith Thankachan ](https://profiles.wordpress.org/thrijith/)
 *   [ stayallive ](https://profiles.wordpress.org/stayallive/)
 *   [ Jared Smith ](https://profiles.wordpress.org/jaredwsmith/)
 *   [ Abhijit Rakas ](https://profiles.wordpress.org/abhijitrakas/)
 *   [ Umesh Nevase ](https://profiles.wordpress.org/umeshnevase/)
 *   [ sid177 ](https://profiles.wordpress.org/sid177/)
 *   [ Souptik Datta ](https://profiles.wordpress.org/souptik/)
 *   [ Arafat Islam ](https://profiles.wordpress.org/arafatkn/)
 *   [ George ](https://profiles.wordpress.org/subscriptiongroup/)
 *   [ Amaan Khan ](https://profiles.wordpress.org/akrocks/)
 *   [ Vedant Gandhi ](https://profiles.wordpress.org/vedantgandhi28/)
 *   [ gridpane ](https://profiles.wordpress.org/gridpane/)
 *   [ agvs ](https://profiles.wordpress.org/agvs/)
 *   [ diepbui4157 ](https://profiles.wordpress.org/diepbui4157/)
 *   [ Pratik Londhe ](https://profiles.wordpress.org/pratiklondhe/)
 *   [ Rolf Allard van Hagen ](https://profiles.wordpress.org/ravanh/)
 *   [ Tim ](https://profiles.wordpress.org/tjalexander70/)

«Nginx Helper» 13 تىلغا تەرجىمە قىلىنغان. [تەرجىمانلار](https://translate.wordpress.org/projects/wp-plugins/nginx-helper/contributors)
نىڭ تۆھپىسى ئۈچۈن رەھمەت.

[«Nginx Helper» نى تىلىڭىزغا تەرجىمە قىلىڭ](https://translate.wordpress.org/projects/wp-plugins/nginx-helper)

### ئىجادىيەتكە قىزىقامسىز؟

[كودقا كۆز يۈگۈرتۈپ](https://plugins.trac.wordpress.org/browser/nginx-helper/)، 
[SVN خەزىنە](https://plugins.svn.wordpress.org/nginx-helper/) تەكشۈرۈپ ياكى [RSS](https://plugins.trac.wordpress.org/log/nginx-helper/?limit=100&mode=stop_on_copy&format=rss)
ئارقىلىق [ئىجادىيەت خاتىرىسى](https://plugins.trac.wordpress.org/log/nginx-helper/)
گە مۇشتەرى بولغىلى بولىدۇ.

## ئۆزگىرىش خاتىرىسى

#### 2.3.5

 * Purge not working. [#Issue](https://wordpress.org/support/topic/purge-not-working-7/)–
   by [tjalexander70](https://profiles.wordpress.org/tjalexander70/), [mrrobot47](https://github.com/mrrobot47)

#### 2.3.4

 * Cannot uncheck Purge Homephae options. [#Issue](https://wordpress.org/support/topic/cannot-uncheck-purge-homephae-options/)–
   by [diepbui4157](https://profiles.wordpress.org/diepbui4157/)
 * FastCGI cache purge fails if not using trailing slashes in URI structure. [#Issue](https://wordpress.org/support/topic/fastcgi-cache-purge-fails-if-not-using-trailing-slashes-in-uri-structure/)–
   by [agvs](https://profiles.wordpress.org/agvs/), [Vedant-Gandhi](https://github.com/Vedant-Gandhi)
 * What’s _purge_personal_urls() for?. [#Issue](https://wordpress.org/support/topic/whats-_purge_personal_urls-for/)–
   by [Rolf Allard van Hagen](https://profiles.wordpress.org/ravanh/), [pratik-londhe4](https://github.com/pratik-londhe4)
 * Broken link in the useful links section. [#358](https://github.com/rtCamp/nginx-helper/issues/358)–
   by [diepbui4157](https://profiles.wordpress.org/diepbui4157/), [pratik-londhe4](https://github.com/rtCamp/pratiklondhe4)
 * Small issues with translatable strings. [#348](https://github.com/rtCamp/nginx-helper/issues/348)–
   by [webdados](https://github.com/webdados)
 * New filter for RT_WP_NGINX_HELPER_CACHE_PATH default constant value. [#298](https://github.com/rtCamp/nginx-helper/issues/298)–
   by [SGr33n](https://github.com/SGr33n), [Vedant-Gandhi](https://github.com/Vedant-Gandhi)
 * PURGUE FOR EDITOR. [#243](https://github.com/rtCamp/nginx-helper/issues/243) –
   by [ghost](https://github.com/ghost), [pratik-londhe4](https://github.com/pratik-londhe4)

#### 2.3.3

 * Fix AMP Purge for method unlink. [#396](https://github.com/rtCamp/nginx-helper/issues/343)–
   by [Stefan Fisk](https://github.com/stefanfisk)

#### 2.3.2

 * Update the contributors list for the plugin. [#343](https://github.com/rtCamp/nginx-helper/issues/343)–
   by [Vedant Gandhi](https://github.com/Vedant-Gandhi)

#### 2.3.1

 * Update the contributors list and tags for the plugin. [#378](https://github.com/rtCamp/nginx-helper/issues/378)–
   by [Vedant Gandhi](https://github.com/Vedant-Gandhi)

#### 2.3.0

 * Disable the purge functionality when importing data. [#52](https://github.com/rtCamp/nginx-helper/pull/52)–
   by [Vedant Gandhi](https://github.com/Vedant-Gandhi)
 * Added option to preload cache for all Post and Pages. [#47](https://github.com/rtCamp/nginx-helper/pull/47)–
   by [Vedant Gandhi](https://github.com/Vedant-Gandhi)
 * Added the capability to purge Amp URL’s. [#135](https://github.com/rtCamp/nginx-helper/pull/135)–
   by [Vedant Gandhi](https://github.com/Vedant-Gandhi)
 * Add support for adding Username, Password support for Redis. It also includes
   the support for Unix Socket Path for Redis along with Database selection. [#343](https://github.com/rtCamp/nginx-helper/pull/343),
   [#350](https://github.com/rtCamp/nginx-helper/pull/350) – by [Vedant Gandhi](https://github.com/Vedant-Gandhi)
 * Add capability to allow modifying options using WP-CLI. [#307](https://github.com/rtCamp/nginx-helper/pull/307)–
   by [Vedant Gandhi](https://github.com/Vedant-Gandhi)
 * Fix the plugin crash issue due to internationalization after upgrading to WordPress
   Version 6.7. [#364](https://github.com/rtCamp/nginx-helper/pull/364) – by [Vedant Gandhi](https://github.com/Vedant-Gandhi)

#### 2.2.5

 * Add the capability to enable/disable purging of feeds. [#281](https://github.com/rtCamp/nginx-helper/issues/281)–
   by [Amaan Khan](https://github.com/pathan-amaankhan)
 * Fix undefined port error when Redis port is set to empty string. [#333](https://github.com/rtCamp/nginx-helper/issues/333)–
   by [Amaan Khan](https://github.com/pathan-amaankhan)

#### 2.2.4

 * Introduces the capability to specify the `NGINX_HELPER_LOG` constant, allowing
   users to activate the logging feature. [#318](https://github.com/rtCamp/nginx-helper/pull/318)–
   by [Vishal Kakadiya](https://github.com/vishalkakadiya)
 * Existing users employing the nginx-helper plugin with logging enabled will experience
   no disruptions. However, if logging is disabled, users must define the `NGINX_HELPER_LOG`
   constant to re-enable the logging feature.

#### 2.2.3

 * Add the URL being purged as parameter in `rt_nginx_helper_purge_cached_file` 
   hook. [#271](https://github.com/rtCamp/nginx-helper/pull/271) – by [Arafat Islam](https://github.com/arafatkn)
 * Fix performance issue when saving nav menus. [#112](https://github.com/rtCamp/nginx-helper/issues/112),
   [#272](https://github.com/rtCamp/nginx-helper/pull/272/) – by [Arafat Islam](https://github.com/arafatkn)
 * Fix purging date archives for custom post types. [#40](https://github.com/rtCamp/nginx-helper/issues/40),
   [#268](https://github.com/rtCamp/nginx-helper/pull/268) – by [Arafat Islam](https://github.com/arafatkn)
 * Fix pages and CPT URLs not being purged on moving to trash. [#191](https://github.com/rtCamp/nginx-helper/issues/191),
   [#267](https://github.com/rtCamp/nginx-helper/pull/267) – by [Arafat Islam](https://github.com/arafatkn)
 * Fix notice – Undefined index: path [#190](https://github.com/rtCamp/nginx-helper/issues/190),
   [#251](https://github.com/rtCamp/nginx-helper/issues/251), [#262](https://github.com/rtCamp/nginx-helper/pull/262)–
   by [George Lagonikas](https://github.com/glagonikas)
 * PHP 8.1 compatibility [#291](https://github.com/rtCamp/nginx-helper/issues/291),
   [#302](https://github.com/rtCamp/nginx-helper/pull/302) – by [Siddharth Tikekar](https://github.com/SID177)
 * Tested with WordPress 6.1 [#285](https://github.com/rtCamp/nginx-helper/pull/285)

#### 2.2.2

 * Add action `rt_nginx_helper_after_purge_all` to fire after the entire cache has
   been purged whatever caching type is used. [#232](https://github.com/rtCamp/nginx-helper/pull/232)–
   by [Julien-prrs](https://github.com/Julien-prrs)
 * Fix issue where settings not saved because the button’s value localized (for 
   any language). [#236](https://github.com/rtCamp/nginx-helper/pull/236) – by [umeshnevase](https://github.com/umeshnevase)
 * Fix issue where «Custom Purge URL» option displays previous value. [#240](https://github.com/rtCamp/nginx-helper/issues/240),
   [#241](https://github.com/rtCamp/nginx-helper/pull/241) – by [KirillGritcenko](https://github.com/KirillGritcenko)
 * Tested with WordPress 5.4

#### 2.2.1

 * Fix timeout issue on FastCGI cache purge. [#229](https://github.com/rtCamp/nginx-helper/pull/229)–
   by [chandrapatel](https://github.com/chandrapatel), [thrijith](https://github.com/thrijith)

#### 2.2.0

 * Add filter `rt_nginx_helper_fastcgi_purge_suffix` to change purge suffix for 
   FastCGI cache. [#141](https://github.com/rtCamp/nginx-helper/pull/141) – by [stayallive](https://github.com/stayallive)
 * Add filter `rt_nginx_helper_fastcgi_purge_url_base` to change purge URL base 
   for FastCGI cache. [#141](https://github.com/rtCamp/nginx-helper/pull/141) – 
   by [stayallive](https://github.com/stayallive)
 * Update our code to be in line with WordPress Coding standards in various places.
   [#209](https://github.com/rtCamp/nginx-helper/pull/209), [#225](https://github.com/rtCamp/nginx-helper/pull/225)–
   by [abhijitrakas](https://github.com/abhijitrakas), [chandrapatel](https://github.com/chandrapatel)
 * Check and verify purging is enabled before purging cache. [#168](https://github.com/rtCamp/nginx-helper/pull/168)–
   by [jaredwsmith](https://github.com/jaredwsmith)
 * Hide Purge Cache button in admin bar when purge is disabled. [#218](https://github.com/rtCamp/nginx-helper/issues/218),
   [#219](https://github.com/rtCamp/nginx-helper/pull/219) – by [mbautista](https://github.com/mbautista),
   [chandrapatel](https://github.com/chandrapatel)
 * Don’t add Nginx Timestamp on WordPress login page. [#204](https://github.com/rtCamp/nginx-helper/issues/204),
   [#220](https://github.com/rtCamp/nginx-helper/pull/220) – by [peixotorms](https://github.com/peixotorms),
   [chandrapatel](https://github.com/chandrapatel)

#### 2.1.0

 * Add wildcard cache key deletion for device type cache purge. [#203](https://github.com/rtCamp/nginx-helper/pull/203)–
   by [pradeep910](https://github.com/pradeep910)
 * Add filter `rt_nginx_helper_purge_url` to filter the URL to be purged. [#182](https://github.com/rtCamp/nginx-helper/pull/182)–
   by [todeveni](https://github.com/todeveni)
 * Add filter `rt_nginx_helper_purge_cached_file` to filter the cached file name.
   [#182](https://github.com/rtCamp/nginx-helper/pull/182) – by [todeveni](https://github.com/todeveni)
 * Add filter `rt_nginx_helper_remote_purge_url` to filter remote URL to be purged.
   [#182](https://github.com/rtCamp/nginx-helper/pull/182) – by [todeveni](https://github.com/todeveni)
 * Add action `rt_nginx_helper_after_fastcgi_purge_all` to fire after the FastCGI
   cache has been purged. [#182](https://github.com/rtCamp/nginx-helper/pull/182)–
   by [todeveni](https://github.com/todeveni)
 * Add action `rt_nginx_helper_after_redis_purge_all` to fire after the Redis cache
   has been purged. [#182](https://github.com/rtCamp/nginx-helper/pull/182) – by
   [todeveni](https://github.com/todeveni)
 * Add action `rt_nginx_helper_purged_file` to fire an action after deleting file
   from cache. [#182](https://github.com/rtCamp/nginx-helper/pull/182) – by [todeveni](https://github.com/todeveni)
 * Add action `rt_nginx_helper_before_remote_purge_url` to fire an action before
   purging remote URL. [#182](https://github.com/rtCamp/nginx-helper/pull/182) –
   by [todeveni](https://github.com/todeveni)
 * Add action `rt_nginx_helper_after_remote_purge_url` to fire an action after remote
   purge request. [#182](https://github.com/rtCamp/nginx-helper/pull/182) – by [todeveni](https://github.com/todeveni)
 * Fix issue with post purge on new comments. [#175](https://github.com/rtCamp/nginx-helper/pull/175)–
   by [jinschoi](https://github.com/jinschoi)
 * Fix Nginx Timestamp being added to invalid content type. [#200](https://github.com/rtCamp/nginx-helper/pull/200)–
   by [thrijith](https://github.com/thrijith)
 * Handle filesize exception while truncating nginx.log file. [#206](https://github.com/rtCamp/nginx-helper/pull/206)–
   by [peterjanes](https://github.com/peterjanes)

#### 2.0.3

 * Update article link for fastcgi cache purge. [#187](https://github.com/rtCamp/nginx-helper/pull/187)–
   by [gagan0123](https://github.com/gagan0123)
 * Fix map generation issue on `SUBDOMAIN_INSTALL`. [#189](https://github.com/rtCamp/nginx-helper/pull/189)–
   by [ChrisHardie](https://github.com/ChrisHardie)

#### 2.0.2

 * Fix undefined error when we install the plugin for the first time and if Redis
   is not available. [#162](https://github.com/rtCamp/nginx-helper/pull/162) – by
   [Joel-James](https://github.com/Joel-James)
 * Remove extra spacing for nginx map section. [#169](https://github.com/rtCamp/nginx-helper/pull/169)–
   by [ShashwatMittal](https://github.com/ShashwatMittal)
 * Purge Cache menu in front-end admibar now purge current page. [#173](https://github.com/rtCamp/nginx-helper/pull/173)–
   by [imranhsayed](https://github.com/imranhsayed)
 * Fix issue where cache is not cleared when page is swiched from publish to draft.
   [#174](https://github.com/rtCamp/nginx-helper/pull/174) – by [imranhsayed](https://github.com/imranhsayed)
 * Fix an issue where custom purge url option does not show newlines when using 
   multiple urls. [#184](https://github.com/rtCamp/nginx-helper/issues/184) – by
   [mist-webit](https://github.com/mist-webit)

#### 2.0.1

 * Fix settings url for multisite: use network_admin_url to get network correct 
   settings url. [#163](https://github.com/rtCamp/nginx-helper/pull/163) – by [Joel-James](https://github.com/Joel-James)
 * Fix php error with arbitrary statement in empty – Prior to PHP 5.5. [#165](https://github.com/rtCamp/nginx-helper/pull/165)–
   by [PatelUtkarsh](https://github.com/PatelUtkarsh)

#### 2.0.0

 * Fix typo causing failure to purge on trashed comment. [#159](https://github.com/rtCamp/nginx-helper/pull/159)–
   by [jinschoi](https://github.com/jinschoi)
 * Refactor Plugin structure and remove unused code. Initial code by [chandrapatel](https://github.com/chandrapatel),
   [#153](https://github.com/rtCamp/nginx-helper/pull/153) – by [jinschoi](https://github.com/kelin1003),
 * Run phpcs and fix warning. [#158](https://github.com/rtCamp/nginx-helper/pull/158)
 * Make compatible with EasyEngine v4.

#### 1.9.12

 * Allow override Redis host/port/prefix by defining constant in wp-config.php [#152](https://github.com/rtCamp/nginx-helper/pull/152)–
   by [vincent-lu](https://github.com/vincent-lu)

#### 1.9.11

 * Fixed issue where permalinks without trailing slash does not purging [#124](https://github.com/rtCamp/nginx-helper/issues/124)–
   by Patrick
 * Check whether role exist or not before removing capability. [#134](https://github.com/rtCamp/nginx-helper/pull/134)–
   by [1gor](https://github.com/1gor)

#### 1.9.10

 * Fixed issue where Nginx cache folders deleted on purge. [#123](https://github.com/rtCamp/nginx-helper/pull/123)–
   by [johan-chassaing](https://github.com/johan-chassaing)
 * Fixed Redis purge all feature for installation where WordPress lives in a separate
   folder. [#130](https://github.com/rtCamp/nginx-helper/pull/130) – by [pySilver](https://github.com/pySilver)

#### 1.9.9

 * Fix wp_redirect issue. [#131](https://github.com/rtCamp/nginx-helper/pull/131)–
   by [matt-h](https://github.com/matt-h)

#### 1.9.8

 * Fixed homepage cache cleared when WPML plugin used [#116](https://github.com/rtCamp/nginx-helper/pull/116)–
   by [Niwreg](https://profiles.wordpress.org/niwreg/)
 * Fixed Purge Cache clears the whole Redis cache [#113](https://github.com/rtCamp/nginx-helper/issues/113)–
   by HansVanEijsden
 * One log file for all site in WPMU.
 * Single site Redis cache purge when click on Purge Cache button in WPMU [#122](https://github.com/rtCamp/nginx-helper/pull/122)–
   by Lars Støttrup Nielsen
 * Fixed notices and warnings.

#### 1.9.7

 * Remove timestamp if cron or wp-cli [#114](https://github.com/rtCamp/nginx-helper/pull/114)–
   by [samedwards](https://profiles.wordpress.org/samedwards/)
 * Fixed notices and warnings.

#### 1.9.6

 * Fixed cache purging on post publish.
 * Error fixed when redis server not installed.

#### 1.9.5

Added custom purge URL option.

#### 1.9.4

 * Added redis server connection timeout.
 * Added RedisException handling.

#### 1.9.3

 * Added PhpRedis API support.
 * Added redis-lua script support to purge complete cache very fast.
 * Added composer.json support
 * Fixed cache purging link in admin bar.
 * Updated the initial settings to include the ›purge_method‹ [#99](https://github.com/rtCamp/nginx-helper/pull/99)–
   by
    [gagan0123](https://github.com/gagan0123)

#### 1.9.2

Fix purging for Redis cache and FastCGI cache

#### 1.9.1

Fix purging for custom post types

#### 1.9

Added Redis cache purge support.

#### 1.8.13

Fixed PHP notice for an undefined index when «Enable Logging» is not set.

#### 1.8.12

Updated readme and changelog

#### 1.8.11

Fix url escaping [#82](https://github.com/rtCamp/nginx-helper/pull/82) – by
 [javisperez](https://github.com/javisperez)

#### 1.8.10

 * Security bug fix

#### 1.8.9

 * Default setting fix and wp-cli example correction – by [bcole808](https://profiles.wordpress.org/bcole808/)

#### 1.8.8

 * Added option to purge cache without nginx purge module – by [bcole808](https://profiles.wordpress.org/bcole808/)

#### 1.8.7

 * Added action `rt_nginx_helper_purge_all` to purge cache from other plugins – 
   by [gungeekatx](https://profiles.wordpress.org/gungeekatx/)

#### 1.8.6

 * Removed wercker.yml from plugin zip/svn.
 * Updated readme

#### 1.8.5

 * Added WP_CLI support – by [Udit Desai](https://profiles.wordpress.org/desaiuditd/)

#### 1.8.4

 * Fix undefined index issue and correct «purge_archive_on_del» key

#### 1.8.3

 * Tested with WordPress 4.0
 * Fix issue #69

#### 1.8.1

 * Tested with wordpress 3.9.1
 * Fix confilct with Mailchimp’s Social plugin

#### 1.8

 * New admin UI
 * Fix missing wp_sanitize_redirect function call

#### 1.7.6

 * Update Backend UI
 * Added Language Support

#### 1.7.5

 * Fixed option name mismatch issue to purge homepage on delete.

#### 1.7.4

 * Disable purge and stamp by default.

#### 1.7.3

 * Suppressed `unlink` related error-messages which can be safely ignored.
 * Fixed a bug in purge-all option.

#### 1.7.2

 * [pjv](https://profiles.wordpress.org/pjv/) fixed bug in logging file.

#### 1.7.1

 * Fixes bug in true purge and admin screen.

#### 1.7

 * True full cache purge added.
 * Map file location changed to uploads‹ directory to fix http://rtcamp.com/support/
   topic/plugin-update-removes-map-file/
 * Log file location also changed to uploads‹ directory.

#### 1.6.13

 * [pjv](https://profiles.wordpress.org/pjv/) changed the way home URL is accessed.
   Instead of site option, the plugin now uses home_URL() function.

#### 1.6.12

 * [telofy](https://wordpress.org/support/profile/telofy) added purging of atom 
   and RDF feeds.

#### 1.6.11

 * Removed comments from Admin screens since, it was interfering with media uploads
   in 3.5 up.

#### 1.6.10

 * Cleaned up code.
 * Added credits for code.
 * Improved attachment purging.

#### 1.6.9

 * Added Faux to Purge all buttons, to avoid misleading users.

#### 1.6.8

 * [daankortenbach](https://profiles.wordpress.org/daankortenbach) added Purge Cache
   link to wp-admin bar

#### 1.6.7

 * [jk3us](https://profiles.wordpress.org/jk3us) added better content-type detection
   for cache verification comments

#### 1.6.6

 * [darren-slatten](https://profiles.wordpress.org/darren-slatten/) added Manual›
   Purge all URLs‹ functionality

#### 1.6.5

 * Fixed typo that interfered with archive purge settings. Thanks to [Daan Kortenbach](https://profiles.wordpress.org/daankortenbach/)
   for pointing this out.

#### 1.6.4

 * Improved code for map generation to better conventions since the nesting confused
   some servers.
 * Added map update process to admin_init for frequent refreshes.

#### 1.6.3

 * Fixed duplicate entries.

#### 1.6.2

 * Another bug fix in the revised code for improved multisite and multidomain mapping.

#### 1.6.1

 * Fixed bug in the revised code for improved multisite and multidomain mapping.

#### 1.6

 * Revised code for improved multisite and multidomain mapping.

#### 1.5

 * Timestamp now only gets added to content-type text/html
 * Added option to toggle timestamp creation

#### 1.4

 * Fixed bug related to nomenclature of comment status that caused purge to fail.

#### 1.3.9

 * Removed extraneous headers.

#### 1.3.8

 * Fixed bug in single post/page/post-type purging code. Thanks to Greg for pointing
   this out here: http://rtcamp.com/support/topic/updating-post-nginx-helper-purge-
   cache-post/.

#### 1.3.7

 * Changed the action hook, back to ›shutdown‹ from ›wp_footer‹ to add verification
   comments.
 * Added a check to prevent adding comments to ajax requests,

#### 1.3.6

 * Changed the action hook, from ›shutdown‹ to ›wp_footer‹ to add verification comments.
   This was interfering with other plugins.

#### 1.3.5

 * Improved Readme.
 * Improved cache verification comments.

#### 1.3.4

 * Fixed duplicate entries generated for maps (Harmless, but doesn’t look good!)
 * Added timestamp html comments for cache verification, as described here: http://
   rtcamp.com/wordpress-nginx/tutorials/checklist/

#### 1.3.3

 * Fixed map generation for multi domain installs using domain mapping plugin, where
   blog ids were not displayed.

#### 1.3.2

 * Fixed map generation for multi domain installs with domain mapping plugin.

#### 1.3.1

 * Minor fixes for directory structure and file names.

#### 1.3

 * Improved Readme.

#### 1.2

 * Fixed map generation error.
 * Fixed purging logic.
 * Fixed UI where purge settings were lost on disabling and re-enabling purge.
 * Minor Ui rearrangement.

#### 1.1

 * Improved readme.txt. Added Screenshots.

#### 1.0

 * First release

## Meta

 *  Version **2.3.5**
 *  ئاخىرقى يېڭىلانغان ۋاقىت **8 ئاي بۇرۇن**
 *  ئاكتىپ ئورنىتىش سانى **100,000+**
 *  WordPress نەشرى ** 3.0 ياكى يۇقىرى **
 *  **6.8.5** دا سىنالغان
 *  تىل
 * [Chinese (Taiwan)](https://tw.wordpress.org/plugins/nginx-helper/)، [Dutch](https://nl.wordpress.org/plugins/nginx-helper/)،
   [English (Australia)](https://en-au.wordpress.org/plugins/nginx-helper/)، [English (Canada)](https://en-ca.wordpress.org/plugins/nginx-helper/)،
   [English (New Zealand)](https://en-nz.wordpress.org/plugins/nginx-helper/)، [English (US)](https://wordpress.org/plugins/nginx-helper/)،
   [Korean](https://ko.wordpress.org/plugins/nginx-helper/)، [Portuguese (Portugal)](https://pt.wordpress.org/plugins/nginx-helper/)،
   [Russian](https://ru.wordpress.org/plugins/nginx-helper/)، [Slovak](https://sk.wordpress.org/plugins/nginx-helper/)،
   [Spanish (Chile)](https://cl.wordpress.org/plugins/nginx-helper/)، [Spanish (Colombia)](https://es-co.wordpress.org/plugins/nginx-helper/)،
   [Spanish (Spain)](https://es.wordpress.org/plugins/nginx-helper/) ۋە [Spanish (Venezuela)](https://ve.wordpress.org/plugins/nginx-helper/).
 *  [تىلىڭىزغا تەرجىمە قىلىڭ](https://translate.wordpress.org/projects/wp-plugins/nginx-helper)
 * بەلگە
 * [cache purge](https://ug.wordpress.org/plugins/tags/cache-purge/)[fastcgi](https://ug.wordpress.org/plugins/tags/fastcgi/)
   [nginx](https://ug.wordpress.org/plugins/tags/nginx/)[permalinks](https://ug.wordpress.org/plugins/tags/permalinks/)
 *  [ئالىي كۆرۈنۈش](https://ug.wordpress.org/plugins/nginx-helper/advanced/)

## دەرىجە

 4.4/5 يۇلتۇز

 *  [  25 5-star reviews     ](https://wordpress.org/support/plugin/nginx-helper/reviews/?filter=5)
 *  [  1 4-star review     ](https://wordpress.org/support/plugin/nginx-helper/reviews/?filter=4)
 *  [  0 3-star reviews     ](https://wordpress.org/support/plugin/nginx-helper/reviews/?filter=3)
 *  [  1 2-star review     ](https://wordpress.org/support/plugin/nginx-helper/reviews/?filter=2)
 *  [  4 1-star reviews     ](https://wordpress.org/support/plugin/nginx-helper/reviews/?filter=1)

[Your review](https://wordpress.org/support/plugin/nginx-helper/reviews/#new-post)

[بارلىق ئىنكاسنى كۆرسەت](https://wordpress.org/support/plugin/nginx-helper/reviews/)

## تۆھپىكار

 *   [ rtCamp ](https://profiles.wordpress.org/rtcamp/)
 *   [ Rahul Bansal ](https://profiles.wordpress.org/rahul286/)
 *   [ Saurabh ](https://profiles.wordpress.org/saurabhshukla/)
 *   [ Manish Songirkar ](https://profiles.wordpress.org/manishsongirkar36/)
 *   [ faishal ](https://profiles.wordpress.org/faishal/)
 *   [ Udit Desai ](https://profiles.wordpress.org/desaiuditd/)
 *   [ Darren Slatten ](https://profiles.wordpress.org/darren-slatten/)
 *   [ jk3us ](https://profiles.wordpress.org/jk3us/)
 *   [ Daan Kortenbach ](https://profiles.wordpress.org/daankortenbach/)
 *   [ Telofy ](https://profiles.wordpress.org/telofy/)
 *   [ pjv ](https://profiles.wordpress.org/pjv/)
 *   [ llonchj ](https://profiles.wordpress.org/llonchj/)
 *   [ jinnko ](https://profiles.wordpress.org/jinnko/)
 *   [ weskoop ](https://profiles.wordpress.org/weskoop/)
 *   [ Ben Cole ](https://profiles.wordpress.org/bcole808/)
 *   [ Pete Nelson ](https://profiles.wordpress.org/gungeekatx/)
 *   [ Rohan Veer ](https://profiles.wordpress.org/rohanveer/)
 *   [ Chandra Patel ](https://profiles.wordpress.org/chandrapatel/)
 *   [ Gagan Deep Singh ](https://profiles.wordpress.org/gagan0123/)
 *   [ Michael Beil ](https://profiles.wordpress.org/michaelbeil/)
 *   [ samedwards ](https://profiles.wordpress.org/samedwards/)
 *   [ niwreg ](https://profiles.wordpress.org/niwreg/)
 *   [ Zlatev ](https://profiles.wordpress.org/entr/)
 *   [ nuvoPoint ](https://profiles.wordpress.org/nuvopoint/)
 *   [ iam404 ](https://profiles.wordpress.org/iam404/)
 *   [ Ritesh Patel ](https://profiles.wordpress.org/ritteshpatel/)
 *   [ Vishal Kakadiya ](https://profiles.wordpress.org/vishalkakadiya/)
 *   [ Bunty ](https://profiles.wordpress.org/bhargavbhandari90/)
 *   [ bryant1410 ](https://profiles.wordpress.org/bryant1410/)
 *   [ 1gor ](https://profiles.wordpress.org/1gor/)
 *   [ dotsam ](https://profiles.wordpress.org/dotsam/)
 *   [ nathanielks ](https://profiles.wordpress.org/nathanielks/)
 *   [ rigagoogoo ](https://profiles.wordpress.org/rigagoogoo/)
 *   [ dslatten ](https://profiles.wordpress.org/dslatten/)
 *   [ jinschoi ](https://profiles.wordpress.org/jinschoi/)
 *   [ Kelin Chauhan ](https://profiles.wordpress.org/kelin1003/)
 *   [ vaishaliagola27 ](https://profiles.wordpress.org/vaishuagola27/)
 *   [ Rahul Prajapati ](https://profiles.wordpress.org/rahulsprajapati/)
 *   [ Utkarsh ](https://profiles.wordpress.org/utkarshpatel/)
 *   [ Imran Sayed ](https://profiles.wordpress.org/gsayed786/)
 *   [ Shashwat Mittal ](https://profiles.wordpress.org/shashwatmittal/)
 *   [ Sudhir Yadav ](https://profiles.wordpress.org/sudhiryadav/)
 *   [ Thrijith Thankachan ](https://profiles.wordpress.org/thrijith/)
 *   [ stayallive ](https://profiles.wordpress.org/stayallive/)
 *   [ Jared Smith ](https://profiles.wordpress.org/jaredwsmith/)
 *   [ Abhijit Rakas ](https://profiles.wordpress.org/abhijitrakas/)
 *   [ Umesh Nevase ](https://profiles.wordpress.org/umeshnevase/)
 *   [ sid177 ](https://profiles.wordpress.org/sid177/)
 *   [ Souptik Datta ](https://profiles.wordpress.org/souptik/)
 *   [ Arafat Islam ](https://profiles.wordpress.org/arafatkn/)
 *   [ George ](https://profiles.wordpress.org/subscriptiongroup/)
 *   [ Amaan Khan ](https://profiles.wordpress.org/akrocks/)
 *   [ Vedant Gandhi ](https://profiles.wordpress.org/vedantgandhi28/)
 *   [ gridpane ](https://profiles.wordpress.org/gridpane/)
 *   [ agvs ](https://profiles.wordpress.org/agvs/)
 *   [ diepbui4157 ](https://profiles.wordpress.org/diepbui4157/)
 *   [ Pratik Londhe ](https://profiles.wordpress.org/pratiklondhe/)
 *   [ Rolf Allard van Hagen ](https://profiles.wordpress.org/ravanh/)
 *   [ Tim ](https://profiles.wordpress.org/tjalexander70/)

## قوللاش

يېقىنقى ئىككى ئايدا ھەل قىلىنغان مەسىلە:

     0 / 1

 [قوللاش مۇنبىرىنى كۆرسەت](https://wordpress.org/support/plugin/nginx-helper/)

## ئىئانە

بۇ قىستۇرمىنىڭ ياخشىلىنىشىنى قوللامسىز؟

 [ بۇ قىستۇرمىغا ئىئانە قىلىش ](http://rt.cx/eedonate/)