我有这样的表格:
<?php
echo form_open('/student/insert',array('name' => 'myform');
?>
// form data like label, input tags
// submit button
<?php
echo form_close();
?>
我有一个显示此表单的 URL:
http://localhost/mycodeigniterproject/index.php/student
现在,当我提交此表单时,URL 变为:
http://localhost://mycodeigniterproject/index.php/mycodeigniter/controllers/index.php/student/insert
而我希望它应该是:
http://localhost/mycodeigniterproject/index.php/student/insert
我的代码有什么问题?为什么 CodeIgniter 不使用相对路径?