Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I can not load controller with

http://localhost/index.php?controller/method

But if i does not use '?' and try to load a controller from view then duplicate URL produce. As an example of above, if i add this link in form action in view then result url will be

http://localhost/index.php/controller/index.php/controller/method

How to solve it? I did not use htaccess file

share|improve this question
Do you have your base_url() set in config.php? – John Fable Apr 24 '12 at 21:29
yes it did. it should be localhost/codeigniter_folder_name right? – shantanu Apr 25 '12 at 8:39
does localhost/index.php/controller/method work? – Yan Apr 25 '12 at 10:19
yes it works. But if i set it in form action it call index.php/controller/index.php/controller/method . and '?' is not working – shantanu Apr 25 '12 at 12:14
does you form open look like this: form_open('controller/method'); – John Fable Apr 25 '12 at 14:38
show 1 more comment

1 Answer

Use the site_url() function or, as @JohnFable stated, use the form_open function.

<form method="post" action="<?= form_open('controller/method'); ?>">

or

<a href="<?= site_url('controller/method'); ?>">Controller/Method</a>

or

<?= form_open('controller/method'); ?>

This will ensure that your "base url", i.e. http://localhost is prepended correctly to the URL you want to view, i.e. http://localhost/index.php/controller/method or if you have set it up to, http://localhost/controller/method

Gavin

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.