我下载了CodeIgniter 2.1.0,然后我按照CodeIgniter 2.1.0上的tutorial进行了操作。
问题是当我尝试在此网址中提交表单时:
http://localhost/CodeIgniter/index.php/news/create
该网页被重定向到此网址:
http://localhost/CodeIgniter/index.php/news/localhost/CodeIgniter/index.php/news/create
我厌倦了很多改变route.php的方法,但它不起作用。我该如何解决这个问题?
route.php
$route['news/create'] = 'news/create';
$route['news/(:any)'] = 'news/view/$1';
$route['news'] = 'news';
$route['(:any)'] = 'pages/view/$1';
$route['default_controller'] = 'pages/view';
这是表单页面的代码:
public function create()
{
$this->load->helper('form');
$this->load->library('form_validation');
$data['title'] = 'Create a news item';
$this->form_validation->set_rules('title', 'Title', 'required');
$this->form_validation->set_rules('text', 'text', 'required');
if ($this->form_validation->run() === FALSE)
{
$this->load->view('templates/header', $data);
$this->load->view('news/create');
$this->load->view('templates/footer');
}
else
{
$this->news_model->set_news();
$this->load->view('news/success');
}
}
我注意到当页面加载时的表单页面,下面的代码段将被执行,但是,else段永远不会被执行更改。
if ($this->form_validation->run() === FALSE)
{
$this->load->view('templates/header', $data);
$this->load->view('news/create');
$this->load->view('templates/footer');
}
这是表单页面,没什么特别的,只需调用上面显示的create函数即可。 的 create.php
<h2>Create a news item</h2>
<?php echo validation_errors(); ?>
<?php echo form_open('news/create') ?>
<label for="title">Title</label>
<input type="input" name="title" /><br />
<label for="text">Text</label>
<textarea name="text"></textarea><br />
<input type="submit" name="submit" value="Create news item" />
</form>
这是表单页面的HTML:
<html>
<head>
<title>Create a news item - CodeIgniter 2 Tutorial</title>
</head>
<body>
<h1>CodeIgniter 2 tutorial</h1><h2>Create a news item</h2>
<form action="localhost/CodeIgniter/index.php/news/create" method="post" accept-charset="utf-8">
<label for="title">Title</label>
<input type="input" name="title" /><br />
<label for="text">Text</label>
<textarea name="text"></textarea><br />
<input type="submit" name="submit" value="Create news item" />
</form><strong>©2012</strong>
</body>
</html>
当我按下create new item
按钮时,网址已更改为
http://localhost/CodeIgniter/index.php/news/localhost/CodeIgniter/index.php/news/create
和页面显示404 Pages Not Found
答案 0 :(得分:6)
我找到了解决方案,它是由不正确的基本网址设置引起的。
在我的基本网址之前:$config['base_url'] = 'localhost/CodeIgniter';
现在我将其更改为
$config['base_url'] = 'http://localhost/CodeIgniter/';
现在工作正常。
感谢任何试图提供帮助的人:)
答案 1 :(得分:0)
只是一个建议,可能它可以帮助你:
$config['base_url'] = ((isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] == "on") ? "https" : "http");
$config['base_url'] .= "://".$_SERVER['HTTP_HOST'];
$config['base_url'] .= str_replace(basename($_SERVER['SCRIPT_NAME']),"",$_SERVER['SCRIPT_NAME']);
在config.php文件中设置此项,您永远不会担心$config['base_url']
。因为它会设置http
或https
端口,domain
,port number
(例如8080,8880等)和codeigniter root folder
。此外,它可以在您的任何codeigniter项目中重用。 :)
您还可以查看this article