From bfa2492b09b02fe76f1639c520cdddcc930c446a Mon Sep 17 00:00:00 2001 From: Mitesh Shah Date: Wed, 26 Dec 2012 16:22:34 +0530 Subject: [PATCH] Minor Fix --- conf/nginx/singlesite/w3-total-cache.conf | 2 +- conf/nginx/singlesite/wp-super-cache.conf | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/conf/nginx/singlesite/w3-total-cache.conf b/conf/nginx/singlesite/w3-total-cache.conf index d2c4ce03..e1921778 100644 --- a/conf/nginx/singlesite/w3-total-cache.conf +++ b/conf/nginx/singlesite/w3-total-cache.conf @@ -29,7 +29,7 @@ server { # Use cached or actual file if they exists, otherwise pass request to WordPress location / { - try_files /wp-content/w3tc/pgcache/$cache_uri/_index.html $uri $uri/ /index.php?$args ; + try_files /wp-content/w3tc/pgcache/$cache_uri/_index.html $uri $uri/ /index.php?$args; } location = /favicon.ico { log_not_found off; access_log off; } diff --git a/conf/nginx/singlesite/wp-super-cache.conf b/conf/nginx/singlesite/wp-super-cache.conf index 1d89e3a2..478ac966 100644 --- a/conf/nginx/singlesite/wp-super-cache.conf +++ b/conf/nginx/singlesite/wp-super-cache.conf @@ -29,7 +29,7 @@ server { # Use cached or actual file if they exists, otherwise pass request to WordPress location / { - try_files /wp-content/cache/supercache/$http_host/$cache_uri/index.html $uri $uri/ /index.php; + try_files /wp-content/cache/supercache/$http_host/$cache_uri/index.html $uri $uri/ /index.php?$args; } location = /favicon.ico { log_not_found off; access_log off; }