Posts Tagged ‘ CodeIgniter

CodeIgniter和Doctrine笔记

CodeIgniter和Doctrine笔记

1.下载CI和Doctrine,Doctrine用稳定1.2版

2.看教程写基础

3.如何整合Rserve通讯代码到其中?

URL改写

1开启Apache的rewrite_module模块。

2网站更目录建立文件.htaccess

.htaccess:

RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /***/index.php/$1 [L]

ErrorDocument 404 /***/index.php

*3对于CI,更改system/application/config.php

$config['index_page'] = “”;