![]() |
"No input file specified." occurs when i remove index.php and admin.php in htaccess - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20) +--- Forum: Archived General Discussion (https://forum.codeigniter.com/forumdisplay.php?fid=21) +--- Thread: "No input file specified." occurs when i remove index.php and admin.php in htaccess (/showthread.php?tid=59858) |
"No input file specified." occurs when i remove index.php and admin.php in htaccess - El Forum - 11-29-2013 [eluser]Unknown[/eluser] here's my htaccess RewriteEngine On AddType application/x-httpd-php53 .php SetEnv TZ Asia/Manila # If the user types just "admin". RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^admin$ admin\.php [L,QSA] # If the user enter in any admin section, like "admin/section". RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^admin\/(.*)$ admin\.php/$1 [L,QSA] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !index\.php RewriteRule ^(.*)$ index.php/$1 [L] its all working fine on localhost but when i migrated to a live server this happens |