yanghongjun 发表于 2018-11-16 09:34:27

linux+nginx+php+mysql安装及配置

location / {  root   /web/html;
  indexindex.php index.html index.htm;
  }
  location ~ \.php$ {
  fastcgi_pass   127.0.0.1:9000;
  fastcgi_indexindex.php;
  fastcgi_paramSCRIPT_FILENAME/web/html/$fastcgi_script_name;
  include      fastcgi_params;
  }

页: [1]
查看完整版本: linux+nginx+php+mysql安装及配置