CI 框架从哪里看起?CI框架怎么开始学习,CI的初始设置

配置CI:

application/config/config.php:14配置你的域名

application/config/database.php:40配置你数据库的相关参数

 

配置基于htaccess的重定向

RewriteEngine on

RewriteCond $1 !^(index¥.php|images|robots¥.txt)

RewriteRule ^(.*)$ /index.php/$1 [L]

任何除开 index.php,images,和robots.txt 的 HTTP 请求都当成对 index.php 文件的请求。

 

增加 URL 后缀

application/config/config.php:57 配置$config['url_suffix'] = ".html";

 

 

配置后带或不带后缀都可以访问

 

 

使用index.php的get方式访问控制类

application/config/config.php中:

$config['enable_query_strings'] = true;

$config['controller_trigger'] = 'c';

$config['function_trigger'] = 'm';

访问方式:index.php?c=controller&m=method

 

 

自定义的简单的控制类

你可能感兴趣的:(框架)