Bende şimdi kurdum bu eklentiyi oldu gibi tek sorun Mod rewrite.
Sizde ne gibi bir hata çıkmı bilmiyorum ama şunları yapmadıysanız yapın:
oluşturduğunuz cache klasörüne .htaccess klasörü oluşturun ve içine gerekli kodları girin.bunu yaptıktan sonra eklentinin ayarlar kısmında sarı bi yer çıkıyor ve sizden o kodları anadizindeki htaccess'e eklemenizi istiyor, bunlarıda yaptıktan sonra yine ayarlar kısmında sarı bir yer çıkıyor ordaki kodlarıda htaccess'e eklemenizi istiyor işte benim tıkandığım nokta bu ..

buraya kadar yaptım .. bu kodları htaccess'de sanırsam yanlış yere ekledim. hala
Mod rewrite may not be installed! diyor.

kaldım burda ..
Edit : Şu anda tam olarak bunu diyor
WP Super Cache mod rewrite rules were detected in your /var/www/vhosts/yok10.com/httpdocs/.htaccess file. Click the following link to see the lines added to that file. If you have upgraded the plugin make sure these rules match. View mod_rewrite rules
# BEGIN WPSuperCache
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
AddDefaultCharset UTF-8
RewriteCond %{REQUEST_URI} !^.*[^/]$
RewriteCond %{REQUEST_URI} !^.*//.*$
RewriteCond %{REQUEST_METHOD} !=POST
RewriteCond %{QUERY_STRING} !.*=.*
RewriteCond %{HTTP:Cookie} !^.*(comment_author_|wordpress|wp-postpass_).*$
RewriteCond %{HTTP:Accept-Encoding} gzip
RewriteCond %{DOCUMENT_ROOT}/wp-content/cache/supercache/%{HTTP_HOST}/$1/index.html.gz -f
RewriteRule ^(.*) /wp-content/cache/supercache/%{HTTP_HOST}/$1/index.html.gz [L]
RewriteCond %{REQUEST_URI} !^.*[^/]$
RewriteCond %{REQUEST_URI} !^.*//.*$
RewriteCond %{REQUEST_METHOD} !=POST
RewriteCond %{QUERY_STRING} !.*=.*
RewriteCond %{HTTP:Cookie} !^.*(comment_author_|wordpress|wp-postpass_).*$
RewriteCond %{DOCUMENT_ROOT}/wp-content/cache/supercache/%{HTTP_HOST}/$1/index.html -f
RewriteRule ^(.*) /wp-content/cache/supercache/%{HTTP_HOST}/$1/index.html [L]
</IfModule>
# END WPSuperCache
Rules must be added to /var/www/vhosts/yok10.com/httpdocs/wp-content/cache/.htaccess too:
# BEGIN supercache
<IfModule mod_mime.c>
AddEncoding gzip .gz
AddType text/html .gz
</IfModule>
<IfModule mod_deflate.c>
SetEnvIfNoCase Request_URI \.gz$ no-gzip
</IfModule>
<IfModule mod_headers.c>
Header set Cache-Control 'max-age=300, must-revalidate'
</IfModule>
<IfModule mod_expires.c>
ExpiresActive On
ExpiresByType text/html A300
</IfModule>
# END supercache