nginx phpstudy 怎么配置隐藏index.php?

windows系统 phpstudy集成环境,nginx服务, 安装自己的项目后除了首页可以访问,其他页面都不能访问,每次点击它都会在中间添加一个index.php,我也不知道什么原因,


无意间看见这行代码,在nginx的vhosts.conf文件上按照文档的指导加了一行

try_files $uri $uri/ /index.php?$query_string;
server {
    listen 80;
    server_name localhost;

    root  D:/phpStudy/WWW/demo;
    index index.php index.html index.htm;

    location / {
        if (!-e $request_filename) {
             rewrite  ^/(.*)$  /index.php/$1  last;        
             break;
        }
        try_files $uri $uri/ /index.php?$query_string;
    }

    location ~ ^/s-([0-9a-z]+)-(.*) {
        rewrite ^/s-([0-9a-z]+)-(.*) /shtmls/$1/$2 last;
        break;
    }
    
    location ~ ^/desktop {
        rewrite  ^/(.*)$  /index.php/$1  last;
        break;
    }
    

    location ~ .+\.php($|/) {
        set $script    $uri;
        set $path_info  "/";
        if ($uri ~ "^(.+\.php)(/.+)") {
              set $script     $1;
              set $path_info  $2;
        }

        fastcgi_pass 127.0.0.1:9000;
        include fastcgi_params;
        fastcgi_param PATH_INFO $path_info;
        fastcgi_param SCRIPT_FILENAME  $document_root/$script;
        fastcgi_param SCRIPT_NAME $script;

    }

}

然后就可以了,


注:有的项目需要index.php,有的不需要,就好比我这个项目不需要,就可以加上这句代码试试

猜你喜欢

转载自blog.csdn.net/qq_21041889/article/details/80755745