aid

Monday, 13 April 2015

No input file specified in CodeIgniter

You can removed index.php from the url when working CodeIgniter url. you can remove No input file specified in CodeIgniter using the .htaccess file and Apache's mod_rewrite.
Below is the code for resloving No input file specified in CodeIgniter


RewriteBase /yourfoldername/
RewriteCond %{REQUEST_URI} ^system.*
RewriteRule ^(.*)$ /index.php/$1 [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?/$1 [L]

No comments:

Post a Comment