CodeIgniter:我可以列出项目,但无法加载
Posted
技术标签:
【中文标题】CodeIgniter:我可以列出项目,但无法加载【英文标题】:CodeIgniter: I'm able to list the items but I can't load one 【发布时间】:2013-05-01 12:38:51 【问题描述】:我的
应用程序/.htaccess
RewriteEngine on
RewriteCond $1 !^(index\.php|images|robots\.txt)
RewriteRule ^(.*)$ /index.php/$1 [L]
应用程序/config/routes.php
$route['default_controller'] = "news";
$route['404_override'] = '';
应用程序/models/news_model.php
<?php
class News_model extends CI_Model
public function __construct()
$this->load->database();
public function get_news($slug = FALSE)
if ($slug === FALSE)
$query = $this->db->get('news');
return $query->result_array();
$query = $this->db->get_where('news', array('slug' => $slug));
return $query->row_array();
?>
应用程序/控制器/news.php
<?php
class News extends CI_Controller
public function __construct()
parent::__construct();
$this->load->model('news_model');
public function index()
$data['news'] = $this->news_model->get_news();
$data['title'] = 'News archive';
$this->load->view('templates/header', $data);
$this->load->view('news/index', $data);
$this->load->view('templates/footer');
public function view($slug)
echo $slug;
$data['news_item'] = $this->news_model->get_news($slug);
var_dump($data);
if (empty($data['news_item']))
show_404();
$data['title'] = $data['news_item']['title'];
$this->load->view('templates/header', $data);
$this->load->view('news/view', $data);
$this->load->view('templates/footer');
?>
应用程序/视图/index.php:
<?php foreach ($news as $news_item): ?>
<?php var_dump($news_item); ?>
<h2><?php echo "<pre>"; echo $news_item['title'] ?></h2>
<div id="main">
<?php echo $news_item['text'] ?>
</div>
<p><a href="news/<?php echo $news_item['slug'] ?>">View article</a></p>
<?php endforeach ?>
和 Applications/views/view.php
<?php
echo '<h2>'.$news_item['title'].'</h2>';
echo $news_item['text'];
问题是我可以看到索引(其中列出了我的新闻),但是当我点击一个 slug 链接时,它会尝试转到:
/news/slug1
它会触发一个未找到的错误..
我在这里错过了什么?
【问题讨论】:
粘贴你的新闻控制器 我正在编辑。现在有问题了!谢谢 问题很简单,slug1
成为您的操作,因为您没有这样的操作,您会收到错误消息。将您的网址设置为news/view/slug1
,它将起作用
在此服务器上找不到请求的 URL /demo/news/view/noticia1....(/demo/ 是我在 localhost 中的项目文件夹)
您模型的控制器需要parent::__construct()
。
【参考方案1】:
链接应该是:
<p><a href="/news/view/<?php echo $news_item['slug'] ?>">View article</a></p>
【讨论】:
在此服务器上找不到请求的 URL /demo/news/view/noticia2。 (/demo/ 是项目文件夹) 不!它应该是<a href="<?php echo site_url('news/view/'.$news_item['slug'])?>">Link</a>
。如果你想做对的话。
@ToniMichelCaubet 您的 htaccess 需要保留在演示文件夹中,好吗?
.htaccess 应该在您的根文件夹中。它是 index.php 文件以及 system 和 application 等文件夹所在的文件夹
真的吗?我刚刚告诉过你,把它放在你的应用程序文件夹所在的 demo 文件夹中,与主 index.php 文件处于同一级别。有道理吗?【参考方案2】:
控制器的索引方法应该是:
public function index()
$data['news'] = $this->news_model->get_news();
$data['title'] = 'News archive';
$this->load->view('templates/header', $data);
$this->load->view('view', $data);
$this->load->view('templates/footer');
并且文章链接必须是:
<p><a href="news/index/<?php echo $news_item['slug'] ?>">View article</a></p>
【讨论】:
您没有更改index
方法中的任何内容。此外,这也是 view
方法的用途。
我当然改变了。请仔细看:$this->load->view('view', $data);【参考方案3】:
假设您的 CI 位于 /demo 文件夹中: 试试这个htaccess:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /demo/
#Needed for CodeIgniter
RewriteCond %REQUEST_FILENAME !-f
RewriteCond %REQUEST_FILENAME !-d
RewriteCond $1 !^(index\.php|pub|tmp|robots\.txt)
RewriteRule ^(.*)$ index.php/$1 [L]
</IfModule>
您的操作应该可以通过以下网址访问:http://localhost:8080/demo/news/view/slug-here
和NOT
:http://localhost:8080/demo/news/slug-here
【讨论】:
你更新你的htaccess代码了吗?我在您提供的存档中没有看到它更新。 是的,我做到了......你后来发布了这个......:P以上是关于CodeIgniter:我可以列出项目,但无法加载的主要内容,如果未能解决你的问题,请参考以下文章