zoukankan      html  css  js  c++  java
  • nginx虚拟目录配置+重定向

      location /php/ {
        alias /usr/share/nginx/php/;
        index index.html index.htm index.php;
        if (!-e $request_filename) {
            rewrite  ^/php/(.*)$  /php/index.php?s=/$1  last;
        }
      }
    
      location ~ ^/php/.+.php$ {
        fastcgi_pass 127.0.0.1:9000;
        include fastcgi_params;
        root /usr/share/nginx/;
        fastcgi_split_path_info ^(.+.php)(/.+)$;
        fastcgi_param SCRIPT_FILENAME  /usr/share/nginx$fastcgi_script_name;
        fastcgi_param PATH_INFO $fastcgi_path_info;
        fastcgi_index index.php;
      }
    
  • 相关阅读:
    windows7触屏编程
    改变窗口大小,恢复以前的大小
    insert()
    index()
    help()
    id()
    extend()
    count()
    cmp()
    append()
  • 原文地址:https://www.cnblogs.com/lantor/p/13406148.html
Copyright © 2011-2022 走看看