Change your
.htaccess
to look like thisRewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?/$1 [L,QSA]
Notice the
?
mark in the last line. Previously this line was something like this RewriteRule ^(.*)$ index.php/$1 [L]
Also make sure to add this line
Codeigniter “No input file specified.” error when submitting form?RewriteBase /
in your .htaccess
No comments:
Post a Comment