I’ve setup clean URLs on CodeIgniter through .htaccess and they work fine. Sometimes though CI seems to escape it’s clean urls and go back to index.php/ urls. So far I’ve tracked it down to either:
- Forms
- Redirects
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
If you are using
mod_rewriteto removeindex.phpfrom url. You need to change inconfigfile also to make in redirect or from, urls aren’t usingindex.php. You need change inconfig.phpfrom$config['index_page'] = "index.php"; to $config['index_page'] = "";.Please check the comments in config files above that line 🙂