|
1,下载,不多说;
2,以我的安装目录举例,我是放在e:/php/htdocs/dilicms下,以下以该目录举例;
3,修改.htaccess 中
RewriteRule ^(.*)$ /ci/index.php/$1 [L]
为
RewriteRule ^(.*)$ /dilicms/index.php/$1 [L]
也就是修改为你的dilicms所在根目录下的目录;
4,修改config.php
$config['base_url'] = 'http://localhost/dilicms';
5,导入db.sql到数据库中,我导入dilicms数据库中
6,修改database.php
$db['default']['hostname'] = 'localhost'; ——如果是本地数据库,无需更改
$db['default']['username'] = '你的数据库访问用户名';
$db['default']['password'] = '你的数据库访问密码';
$db['default']['database'] = 'dilicms'; ——你的数据库名
7,搞定。 |
评分
-
查看全部评分
|