nginx虚拟目录配置+重定向

Posted 凭栏知潇雨

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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;
  }

以上是关于nginx虚拟目录配置+重定向的主要内容,如果未能解决你的问题,请参考以下文章