zoukankan      html  css  js  c++  java
  • ubuntu+php5.6+redis+mysql5.5+nginx

    thinkphp :


    location / {
                    if (!-e $request_filename) {
                            rewrite ^(.*)$ /index.php?s=$1 last;
                            break;
                    }       
                    
            location / {
                    try_files $uri $uri/ =404;
            }       
            
    location ~ .php$ {
                    include snippets/fastcgi-php.conf;
            #       
            #       # With php7.0-cgi alone:
            #       fastcgi_pass 127.0.0.1:9000;
            #       # With php7.0-fpm:
                    fastcgi_pass unix:/run/php/php5.6-fpm.sock;
                           fastcgi_index  index.php;
               fastcgi_param  SCRIPT_FILENAME  /scripts$fastcgi_script_name;
               include        fastcgi_params;  
               
           }

  • 相关阅读:
    二进制文件
    Python的特殊成员
    中标麒麟Linux7 如何关闭广播消息
    双重循环输出
    输出星期数
    九九乘法表
    打印菱形
    加法表
    求100以内所有偶数和
    猜大小
  • 原文地址:https://www.cnblogs.com/legend-song/p/5523896.html
Copyright © 2011-2022 走看看