I have a CodeIgniter website nulearnedu.in that works perfectly on my local and another VPS server. Now i have another hosting server by godaddy and I upload all the files and database on it. Now my website is not working getting an error "This page isn’t working, the website is currently unable to handle this request. HTTP ERROR 500".
I create a test page that is not linked with the MySQL database. That is working fine.
My .htaccess looks like this if it has something to do with it.
RewriteEngine On
RewriteCond %{HTTPS} !=on
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301,NE]
RewriteCond $1 !^(index\.php|resources|robots\.txt)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L,QSA]
RewriteCond %{HTTP_HOST} ^nulearnedu.in [NC]
RewriteRule ^(.*)$ http://www.nulearnedu.in/$1 [L,R=301,NC]