3

我正在将 CodeIgniter 用于项目。

文件夹结构 - htdocs/NewProject/application

我创建了一个名为 Home - applications/controllers/home.php 的控制器

我创建了一个视图 - applications/view/index.php

我可以毫无问题地访问 index.php。

我的路线是

$route['default_controller'] = "home";

我可以访问 localhost:8888/NewProject - 它带我回家#index

我在 views 文件夹中放了一些 css 和 images 文件夹。我如何访问图像和 css ?

尝试访问 NewProject/css/xxx.css 会导致 not found 错误。

是否有任何备用文件夹我应该添加这些静态文件?我需要在路由文件中添加任何内容吗?

4

1 回答 1

16

使结构像这样

root (is your root directory)
    /application
    /system
    /static
        /images
        /css
        /js

更改您的基本网址config.php

/*
  |--------------------------------------------------------------------------
  | Base Site URL
  |--------------------------------------------------------------------------
  |
  | URL to your CodeIgniter root. Typically this will be your base URL,
  | WITH a trailing slash:
  |
  | http://example.com/
  |
  | If this is not set then CodeIgniter will guess the protocol, domain and
  | path to your installation.
  |
 */
 // use this if your project is in root
$config['base_url'] = 'http://example.com/';

// use this if your project is in folder/subfolders
//$config['base_url'] = 'http://example.com/newproject/liveproject/';

自动加载URL助手autoload.php

/*
  | -------------------------------------------------------------------
  |  Auto-load Helper Files
  | -------------------------------------------------------------------
  | Prototype:
  |
  | $autoload['helper'] = array('url', 'file');
 */

$autoload['helper'] = array('url');

在您的视图文件中

<link rel="stylesheet" type="text/css" href="<?php echo base_url(); ?>static/style.css" />

<img src="<?php echo base_url(); ?>static/images/myimage.jpg" alt="" />

希望这可以帮助。谢谢!!

于 2013-02-24T09:33:26.750 回答