I am running my site, yobeat.com on wordpress and have been for over a year. However recently, I've started having repeated 500 Server Errors occur. Since this has happened at least 5 times now, I am able to rectify it quickly by going into the htaccess file and deleting the code wordpress seems to be adding.
This string ends up repeated over and over (i assume once for every time i update) and eventually it's too much and it crashes.
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
So has anyone else had this problem, and if so, is there a way to stop it from happening! thanks.