嗨,这是我的网站链接 http://webscarlets.com/ci/welcome
我是codeigniter的新手。我从网址中删除了 index.php。要从 url 中删除 index.php,我使用了以下代码。我从 codeigniter 用户指南中获得此代码
RewriteEngine on
RewriteCond $1 !^(index\.php|images|robots\.txt|css)
RewriteRule ^(.*)$ /ci/index.php/$1 [L]
但是css没有加载。这是我的配置设置
//autoload.php
$autoload['helper'] = array('url','form','html');
//config.php
$config['base_url'] = 'http://webscarlets.com/ci/';
$config['index_page'] = '';
$config['uri_protocol'] = 'REQUEST_URI';
//constants.php
define("LAYOUT_URL","http://webscarlets.com/ci/");
//view.sphp
<link rel="stylesheet" type="text/css" href="<?php echo LAYOUT_URL; ?>css/all.css">
请查看我的代码和指南以完成此任务。
提前感谢大家。