我对 Codeigniter URL 有疑问。我有一个控制器“welcome.php”:
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
class Welcome extends CI_Controller {
function __construct()
{
parent::__construct();
}
public function index()
{
$data['tiung'] = 'index';
$this->load->view('welcome_message',$data);
}
public function dor($bus)
{
$data['tiung'] = $bus;
$this->load->view('welcome_message',$data);
}
}
和一个视图“welcome_message.php”:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Welcome to CodeIgniter</title>
</head>
<body>
sesuatu <?php echo $tiung?>
<img src="fragor.jpg" width="720" height="246" alt=""/>
ladalah
</body>
</html>
如果我想使用参数访问控制器功能“dor”,我使用了这个:
localhost/hostname/index.php/welcome/dor/something
它可以工作,但问题是图像未加载。我试图将图像文件放在 webroot 文件夹、“应用程序”文件夹,甚至“视图”文件夹中。但是图像仍然无法加载。我应该把图像文件放在哪里?