मैं WP सुपर कैश के साथ वर्डप्रेस का उपयोग कर रहा हूं। मैं उन आगंतुकों को चाहता हूं जो Google से आते हैं (जो कि सभी देशों के विशिष्ट संदर्भों जैसे google.co.in, google.co.uk और आदि) को बिना पढ़े सामग्री को देखने के लिए प्रेरित करता है ।
मेरे nginx नियम हैं जो मेरे इच्छित तरीके से काम नहीं कर रहे हैं:
server {
server_name website.com;
location / {
root /var/www/html/website.com;
index index.php;
if ($http_referer ~* (www.google.com|www.google.co) ) {
rewrite . /index.php break;
}
if (-f $request_filename) {
break;
}
set $supercache_file '';
set $supercache_uri $request_uri;
if ($request_method = POST) {
set $supercache_uri '';
}
if ($query_string) {
set $supercache_uri '';
}
if ($http_cookie ~* "comment_author_|wordpress|wp-postpass_" ) {
set $supercache_uri '';
}
if ($supercache_uri ~ ^(.+)$) {
set $supercache_file /wp-content/cache/supercache/$http_host/$1index.html;
}
if (-f $document_root$supercache_file) {
rewrite ^(.*)$ $supercache_file break;
}
if (!-e $request_filename) {
rewrite . /index.php last;
}
}
location ~ \.php$ {
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME /var/www/html/website.com$fastcgi_script_name;
include fastcgi_params;
}
}
मुझे अपना लक्ष्य प्राप्त करने के लिए क्या करना चाहिए?