thinkphp ngxin 隐藏入口文件

thinkphp ngxin 隐藏入口文件
server {
listen 80;
server_name localhost;
root F:\web\backer\php;
location / {
rewrite /backer/(.) /public/index.php?s=$1 last;
}
location ~ .php(.
)$ {
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME F:\web\backer\php$fastcgi_script_name;
include fastcgi_params;
}
}
第一个location 起重定向
列如 {
访问http://localhost/backer/user/handle/create_user 时候
地址会重定向到 http://localhost/public/index.php?s=/user/handle/create_user
相应的就会 访问到 F:\web\backer\php\public\index.php
}

thinkphp ngxin 隐藏入口文件_第1张图片
QQ截图20170916113348.jpg

thinkphp ngxin 隐藏入口文件_第2张图片
QQ截图20170916115952.jpg

你可能感兴趣的:(thinkphp ngxin 隐藏入口文件)