Issue : no input file specified

Problem was with .htaccess file

root@server [/home/bunny/public_html/bunnytech]# cat .htaccess
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L]
RewriteBase /bunnytech/

Fix

just changed the line

RewriteRule ^(.*)$ index.php?/$1 [L]

Leave a comment