Suddenly I have begun recieving a 500 Internal Error.
the site is at http://youngcubrecords.com/index.php
I updated a template, then returned to the site and now it is not working?
EE backend still works though. Any ideas? How do I even revert back to it working with the index.php?
The site is on Godaddy, and I had been using an htaccess file to remove the index.php with no problems whatsoever until now. Here is a copy of the htacess file:
# -FrontPage-
IndexIgnore .htaccess */.??* *~ *# */HEADER* */README* */_vti*
<Limit GET POST>
order deny,allow
deny from all
allow from all
</Limit>
<Limit PUT DELETE>
order deny,allow
deny from all
</Limit>
AuthName <a href="http://www.youngcubrecords.com">http://www.youngcubrecords.com</a>
AuthUserFile /var/chroot/home/content/y/o/u/youngcub/html/_vti_pvt/service.pwd
AuthGroupFile /var/chroot/home/content/y/o/u/youngcub/html/_vti_pvt/service.grp
DirectoryIndex temp.html
# rewrite rules
RewriteEngine On
RewriteCond %{QUERY_STRING} ^(css=.*)$ [NC]
RewriteRule ^(.*)$ /index.php?/%1 [L]
RewriteCond $1 !^(images|yoursystem|themes|favicon/.ico|robots\.txt|index.php) [NC]
# ditch index.php
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /index.php?/$1 [L]