I have tried to deploy a codeigniter app on AWS free tier account. I created a hello world project and deployed it and it is successfully running. So PhP is installed fine and working as expected.
But when i try to run the actual project, i just get a blank page. Please find below the .htaccess file.
RewriteEngine on
RewriteCond $1 !^(index\.php|public|\.txt)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?$1
I have deployed the same on Bluehost and is working fine. Tried enabling errors under production and development for index.php using the following.
error_reporting(E_ALL);
ini_set('display_errors', TRUE);
ini_set('display_startup_errors', TRUE);
There are no errors and just a blank page. The error_log is also empty. Can anyone please suggest what could be the issue?