从头配置windows+wamp+php(ci框架)
一,新装windows服务器桌面默认只有回收站,将其他图标调出来
按win键搜索“桌面”,打开“显示或隐藏桌面上的通用图标”
二,下载安装vcredist_x64.exe,否则wamp可能安装出错
三,下载安装wampserver2.5-Apache-2.4.9-Mysql-5.6.17-php5.5.12-64b.exe
四,配置wamp
1,\wamp\wampmanager.ini
a,修改
Type: item; Caption: "rewrite_module"; Action: multi; Actions: apache_mod_rewrite_module
为
Type: item; Caption: "rewrite_module"; Glyph: 13; Action: multi; Actions: apache_mod_rewrite_module
b,修改
Action: run; FileName: "c:/wamp/bin/php/php5.5.12/php-win.exe";Parameters: "switchApacheMod.php rewrite_module off";WorkingDir: "c:/wamp/scripts"; Flags: waituntilterminated
为
Action: run; FileName: "c:/wamp/bin/php/php5.5.12/php-win.exe";Parameters: "switchApacheMod.php rewrite_module on";WorkingDir: "c:/wamp/scripts"; Flags: waituntilterminated
这两处忘记是做什么的了,可能不用改。。。
五,配置apache
1,配置\wamp\bin\apache\apache2.4.9\conf\httpd.conf文件
a,修改
ServerSignature On
ServerTokens Full
为
ServerSignature Off
ServerTokens Prod
功能为隐藏response里的apache版本,提高安全性
b,找到LoadModule rewrite_module modules/mod_rewrite.so,将#去掉取消注释,开启URL重写模块
c,修改DocumentRoot "c:/wamp/www/"为DocumentRoot "c:/webroot/"程序根目录
修改
AllowOverride none
Require all denied
为
AllowOverride All
Allow from all
d,修改为
修改Options Indexes FollowSymLinks为Options FollowSymLinks,修改目录的配置以禁止显示Apache目录列表
修改AllowOverride all为AllowOverride All
修改Require local为Allow from all
e,在LogFormat "%h %l %u %t \"%r\" %>s %b" common上面新增一行,新日志格式
LogFormat "%t %h %l %u \"%{Referer}i\" \"%r\" \"%{Host}i%U\" %>s %b %D \"%{User-Agent}i\"" MyLogFormat
f,找到Include conf/extra/httpd-vhosts.conf,将#去掉取消注释,开启多站点配置文件
2,配置\wamp\bin\apache\apache2.4.9\conf\extra\httpd-vhosts.conf文件
新增
ServerAdmin webmaster@website.com
DocumentRoot "C:/webroot/website.com"
ServerName www.website.com
ErrorLog "logs/www.website.com-error.log"
CustomLog "logs/www.website.com-access.log" MyLogFormat#此处MyLogFormat为在httpd.conf里自定义的节点
泛域名配置
ServerAdmin webmaster@website.com
DocumentRoot "C:/webroot/website.com"
ServerName website.com
ServerAlias *.website.com
ErrorLog "logs/www.website.com-error.log"
CustomLog "logs/www.website.com-access.log" MyLogFormat
六,配置php
1,配置\wamp\bin\php\php5.5.12\php.ini文件
a,修改
expose_php = On
为
expose_php = Off
功能为隐藏response里的php语言和版本的显示,提高安全性
b,修改memory_limit = 128M为想要的内存限制
c,修改post_max_size = 3M为想要的最大post长度
d,修改upload_max_filesize = 6M为想要的最大upload长度
2,配置\wamp\bin\apache\apache2.4.9\bin\php.ini文件,上面那个文件有可能改了没用,wamp可能加载的是这个文件,还得改这个文件,与上面文件修改一致
七,配置phpmyadmin
1,配置基本账号和远程登录http://www.jianshu.com/p/9ac5af911028
2,更改数据库data文件夹位置
64位系统在[wampmysqld]段下添加
[wampmysqld64]
datadir=c:/webroot/mysqldata
八,配置ci
1,在CI的根目录下,即在index.php,system的同级目录下,建立.htaccess,直接建立该文件名的不会成功,可以先建立记事本文件,另存为该名的文件即可。
RewriteEngine on
#如果文件存在,就直接访问文件,不进行下面的RewriteRule.(不是文件或文件不存在就执行重写)
RewriteCond %{REQUEST_FILENAME} !-f
#如果目录存在就直接访问目录不进行RewriteRule
#RewriteCond %{REQUEST_FILENAME} !-d
#如果是这些后缀的文件,就直接访问文件,不进行Rewrite
#RewriteCond %{REQUEST_URI} !^.*(/.css|/.js|/.gif|/.png|/.jpg|/.jpeg)$
RewriteCond $1 !^(index\.php|images|templates|robots\.txt)
RewriteRule ^(.*)$ /index.php?/$1 [L]
如果不是在根目录下,只需要去掉index.php前面的斜杠就行。
2,将CI中配置文件(application/config/config.php)中
$config['index_page'] = "index.php";
改成
$config['index_page'] = "";
#重启apache,完成。
3,多个站点公用同一个system的方法
将system目录移动出来,例如/public/ci_system/,只需要将index.php文件中的$system_path修改为$system_path = '../public/ci_system';即可
4,更改模板文件位置与更改model、library、helper的位置
将model、library、helper的文件夹移动到外面例如/public/ci_application/
在application/core下新建MY_Loader文件
class MY_Loader extends CI_Loader{
public function __construct(){
parent::__construct();
define('TEMPLATE_DIR', '/templates/default/');
$this->_ci_view_paths = array(FCPATH.TEMPLATE_DIR=> TRUE);
define('PUBLIC_APPLICATION_DIR', '../public/ci_application/');
$this->_ci_model_paths = array(APPPATH,PUBLIC_APPLICATION_DIR);
$this->_ci_library_paths = array(APPPATH,BASEPATH,PUBLIC_APPLICATION_DIR);
$this->_ci_helper_paths = array(APPPATH,BASEPATH,PUBLIC_APPLICATION_DIR);
}
}
即可