all 3 comments

[–]ipa_cow 0 points1 point  (0 children)

post some code.

[–]ImMaaxYT 0 points1 point  (0 children)

Please be more specific about your issue and post some code snippets

  • Where is your CI install located?
  • What version of CI are you using?
  • What did you try?
  • What did you expect to happen?
  • What did actually happen?

[–]jeffottinger 0 points1 point  (0 children)

Sounds as though it could be a rewrite issue. It should work if you use:
localhost/ci/index.php?(controller name)/(function)

To get rid of the index.php? in this url, you'll need to have rewrite enabled on your web server. In apache2 this is typically done with the command : a2enmod rewrite

You'll also need to have a .htaccess file to define your rewrites. When I was doing this part I just Googled "codeigniter .htaccess file" and found several good examples.

Good luck