WordPress PHP + Mysql + Apache搭建部署

下载ApacheHttpServer的链接:http://www.apache.org/dist/httpd/binaries/win32

下载WordPress的链接:http://cn.wordpress.org/

下载PHP的链接:http://windows.php.net/download/(PHP5.3(5.3.17))

******************************************************************************

首先要按照ApacheServer,Mysql,PHP

WordPress配置

wp-config.php(来自wp-config-sample.php)

//**MySQL设置-具体信息来自您正在使用的主机**//

/**WordPress数据库的名称*/

define('DB_NAME','phpTest');

/**MySQL数据库用户名*/

define('DB_USER','root');

/**MySQL数据库密码*/

define('DB_PASSWORD','admin');

/**MySQL主机*/

define('DB_HOST','localhost:xxxx');

/**创建数据表时默认的文字编码*/

define('DB_CHARSET','utf8');

/**数据库整理类型。如不确定请勿更改*/

define('DB_COLLATE','');

A.配置Apache

修改E:\ProgramFiles\IDE\Apache2\conf\httpd.conf,如:

DocumentRoot"D:/server/Apache2/htdocs"

#改为

DocumentRoot"E:/ProgramFiles/IDE/Apache2/wordpress"(这个路径是wordpress解压后的路径)

<Directory"D:/server/Apache2/htdocs">

#改为

<Directory"E:/ProgramFiles/IDE/Apache2/wordpress">(这个路径是wordpress解压后的路径)

<IfModuledir_module>

DirectoryIndexindex.html

</IfModule>

#改为

<IfModuledir_module>

DirectoryIndexindex.phpindex.html

</IfModule>

创建一个php测试页面phpinfo.php主到E:/ProgramFiles/IDE/Apache2/wordpress目录下。

内容为<?phpphpinfo();?>

重启apache,然后浏览器输入http://localhost:8080/phpinfo.php是否正常显示

B.配置MySQL

修改E:\ProgramFiles\IDE\MySQL\MySQLServer5.5\my.ini文件

设置

将default-character-set=latin1

改为

default-character-set=utf8

将character-set-server=latin1

改为

character-set-server=utf8

现在开始安装wordpress

在你喜欢的浏览器中访问http://localhost:8080/wp-admin/install.php以便启动安装程序.

输入相关信息,点击“开始安装”

详细的安装说明看:http://codex.wordpress.org/zh-cn:%E5%AE%89%E8%A3%85WordPress

相关推荐