nginx 环境 thinkphp 隐藏index.php
Posted 土豆柿子
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了nginx 环境 thinkphp 隐藏index.php相关的知识,希望对你有一定的参考价值。
tp官网已经写了 http://doc.thinkphp.cn/manual/hidden_index.html
不生效 重启nginx .问题依旧
kill掉nginx进程 再启动
贴段自己的配置:
server {
listen 80;
server_name url;
root /*/*/*;
#include conf.d/ipFilter.conf;
#access_log /data/logs/$server_name.access.log main;
if ($http_user_agent ~ "DNSPod") {
return 200;
}
try_files $uri $uri/ @rewrite;
#隐藏index.php
location / {
if (!-e $request_filename) {
rewrite ^(.*)$ /index.php?s=$1 last;
break;
#pathinfo模式
location ~ \.php {
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_split_path_info ^(.+\.php)(.*)$;
fastcgi_param PATH_INFO $fastcgi_path_info;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
}
以上是关于nginx 环境 thinkphp 隐藏index.php的主要内容,如果未能解决你的问题,请参考以下文章
nginx 配置thinkphp 隐藏index.php 并支持pathinfo