CodeIgniter Forums
form_open and index.php - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20)
+--- Forum: Archived Development & Programming (https://forum.codeigniter.com/forumdisplay.php?fid=23)
+--- Thread: form_open and index.php (/showthread.php?tid=36134)



form_open and index.php - El Forum - 11-22-2010

[eluser]ignited4now[/eluser]
Is there a way for form_open to not include index.php in the action attribute?

So instead of :

action="http://local.domain.com/index.php/controller/signup"

We would get :

action="http://local.domain.com/controller/signup"


form_open and index.php - El Forum - 11-22-2010

[eluser]dudeami0[/eluser]
Is it configured to not use index.php in the config file?


form_open and index.php - El Forum - 11-22-2010

[eluser]ignited4now[/eluser]
facepalm...Thank you

I did have a rewrite rule in place to bypass index.php,

I totally forgot to set $config['index_page'] = "";

Thanks again