flibbertigibbet
Regular Member
- Apr 11, 2010
- 388
- 191
I recently installed a plugin for WP and am having seriously delayed response times from the server. Did a bit of research and found out it could be the .htaccess file. I don't know much about .htaccess coding, and was wondering if someone could just verify whether this looks right or not:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
I didn't do any of the coding, it was all automatic when I installed wp and the plugin. is there something I should take out or add?
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
I didn't do any of the coding, it was all automatic when I installed wp and the plugin. is there something I should take out or add?