Hi
I installed wp-super cache, enabled it and it said it was caching. But my site is still slow and so I checked my htaccess and it doesn't look like it should:
RewriteEngine on
# Use PHP5 as default
AddHandler application/x-httpd-php5 .php
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
RewriteCond %{HTTP_REFERER} !^http://kabai33.com/.*$ [NC]
RewriteCond %{HTTP_REFERER} !^http://kabai33.com$ [NC]
RewriteCond %{HTTP_REFERER} !^http://www.kabai33.com/.*$ [NC]
RewriteCond %{HTTP_REFERER} !^http://www.kabai33.com$ [NC]
RewriteCond %{HTTP_REFERER} !^$
RewriteRule .*\.(jpg|jpeg|gif|png|bmp)$ - [F,NC]
I know there is an example htaccess file on the plugin page but I'm really not sure exactly what I have to add where in my htaccess.
Could anyone please help?
Thanks in advance