[eluser]Unknown[/eluser]
I moved my CI-site to a new host,and everything seemed to work fine. But after a while I discovered that sometimes when do some clicks visiting my site, an Internal Server Error Appears. When I wait for a while and then refresh the page the error disappears. It seems to be at random: is is not a particular section or button that is failing, and sometimes the site is working fine for a while.
Does it have to do with the htacces file?
Does anybody have a suggestion?
thanks
Wouter
this is my htaccess file:
RewriteEngine On
RewriteBase /
#Removes access to the system folder by users.
#Additionally this will allow you to create a System.php controller,
#previously this would not have been possible.
#'system' can be replaced if you have renamed your system folder.
RewriteCond %{REQUEST_URI} ^system.*
RewriteRule ^(.*)$ /index.php?/$1 [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?/$1 [L]