输入banner图图片脚本导航/分类

Nginx php-fpm php mysql

;  
  •         index  index.html index.htm index.php;  
  •     }  
  •     location ~ \.php$ {  
  •         root           /var/www/html;  
  •         fastcgi_pass   127.0.0.1:9000;  
  •         fastcgi_index  index.php;  
  •         fastcgi_param  SCRIPT_FILENAME  /var/www/html$fastcgi_script_name;  # $document_root
  •         include        fastcgi_params;  
  •     }.... 
  •  

    vi /var/www/html/index.php

    <?php
    phpinfo();
    ?>

    Nginx php-fpm php mysql

    标签: