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虚拟目录配置+重定向的主要内容,如果未能解决你的问题,请参考以下文章
nginx 配置web 虚拟文件夹 而且codeIgniter,thinkphp 重定向url 地址
90.Nginx安装与配置:默认虚拟主机用户认证和域名重定向