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开发环境安装
    python文件I/O
    python字符串方法以及注释
    python列表
    php: Can't use function return value in write context
    Notice : brew install php70
    对web开发从业者的发展方向的思考
    关于微信跨号支付
    MySQL触发器写法
    MySQL慢查询日志
  • 原文地址:https://www.cnblogs.com/legend-song/p/5523896.html
Copyright © 2011-2022 走看看