0

嗨,我是 Codeigniter 的新手。我试图做一些基本的事情,但我遇到了错误。我正在使用 v.2.12。我想做两件事。1. 删除 index.php 2. 将外部样式表添加到我的视图中。

我找到了很多教程,但没有人为我工作。如果 index.php 被删除,则 css 无法正常工作。那么任何人都可以帮助我如何做到这一点?

我正在尝试从早上开始做这些基本的事情。

所以请帮助我。

感谢您阅读我的帖子

4

1 回答 1

1

好吧,你的配置页面

$config['base_url'] = 'http://localhost/t/';
$config['index_page'] = '';

您在根文件夹中的 .htaccess 应包含以下内容。确保将 RewriteBase 中的路径更改为您的路径。

RewriteEngine on
RewriteBase /t/
RewriteCond $1 !^(index\.php|resources|robots\.txt)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L,QSA]

在你看来

<link href="<?php echo $this->config->base_url();?>css/layout.css" rel="stylesheet" type="text/css" />

希望这可以帮助

于 2012-08-06T09:39:41.113 回答