windows nginx +php 配备
在windows下进行nginx +php的配置比较简单:
1、首先下载安装php,版本至少要在5.0以上(主要是要PHP版本支持FastCgi方式,包含有php-cgi.exe即可),修改php.ini配置文件
enable_dl = On
cgi.force_redirect = 0
cgi.fix_pathinfo=1
fastcgi.impersonate = 1
cgi.rfc2616_headers = 1
rror_reporting = E_ALL
display_errors = On
extension_dir = "C:\php\ext"
; 动态扩展,可以根据需要去掉 extension 前面的注释 ;?
; 如加载 PDO, MySQL
extension=php_pdo.dll
extension=php_pdo_mysql.dll
2、Nginx配置PHP是以FastCgi方式配置的
3、用文本编辑功能根据打开E:\nginx1.0\conf 目录下的nginx.conf,找到
?
?
?? ? ? ?location / {
?? ? ? ? ? ?root ??html;
?? ? ? ? ? ?index ?index.html index.htm;
?? ? ? ?}
修改为
?
?
?? ? ? ?location / {
?? ? ? ? ? ?root ??D:/PHPWeb;
?? ? ? ? ? ?index ?index.php index.html index.htm;
?? ? ? ?}
找到
?
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
?? ? ? ?#
?? ? ? ?#location ~ \.php$ {
?? ? ? ?# ? ?root ? ? ? ? ? html;
?? ? ? ?# ? ?fastcgi_pass ? 127.0.0.1:9000;
?? ? ? ?# ? ?fastcgi_index ?index.php;
?? ? ? ?# ? ?fastcgi_param ?SCRIPT_FILENAME ?/scripts$fastcgi_script_name;
?? ? ? ?# ? ?include ? ? ? ?fastcgi_params;
?? ? ? ?#}
修改为
?
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
?? ? ? ?#
?? ? ? ?location ~ \.php$ {
?? ? ? ?# ? ?root ? ? ? ? ? html;
?? ? ? ? ? ?fastcgi_pass ? 127.0.0.1:9000;
?? ? ? ? ? ?fastcgi_index ?index.php;
?? ? ? ? ? fastcgi_param ?SCRIPT_FILENAME? D:/PHPWeb$fastcgi_script_name;
?? ? ? ? ? ?include ? ? ? ?fastcgi_params;
?? ? ? ?}
4、启动fast-cgi
?找到php的安装目录,在控制台输入以下命令
f:/php/php-cgi.exe -b 127.0.0.1:9000 -c f:/php/php.ini
5、找到nginx的安装目录,启动nginx
或者建立batlogin"> 您还没有登录,请您登录后再发表评论
相关文章
相关视频
推荐阅读
-
windows nginx +php 配备
-
WINDOWS 2000下使用ISAPI方式安装PHP_PHP
-
使用php+xslt在windows平台上
-
ubuntu 13.04 nginx php 安装
-
redis在windows下安装跟PHP中使用
-
让Windows主机在IIS支持PHP和MySQL_PHP
-
解决nginx不支持thinkphp中pathinfo的问题_PHP
-
Windows10中的IIS10安装php manager,windows10iis10
-
windows8.1 下搭建配置apache+php+mysql,windows8.1apache_PHP教程
-
nginx+php 上传文件失败的问题client_max_body_size