ini nginx tp3.2服务器修改版

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ini nginx tp3.2服务器修改版相关的知识,希望对你有一定的参考价值。

    server {
        listen 8101;
        server_name localhost;
        root "D:/soft/phpstudy/PHPTutorial/WWW/dev/pcplay_full";
        error_page 500 502 503 504  /50x.html;
        location = /50x.html {
            root html;
        }
        location / {
            try_files $uri @rewrite;
        }
        location @rewrite {
            set $static 0;
            if ($uri ~ \.(css|js|jpg|jpeg|png|gif|ico|woff|eot|svg|css\.map|min\.map)$) {
                set $static 1;
            }
            if ($static = 0) {
                rewrite ^/(.*)$ /index.php?s=/$1;
            }
        }
        location ~ /Uploads/.*\.php$ {
            deny all;
        }
        location ~ \.php/ {
            if ($request_uri ~ ^(.+\.php)(/.+?)($|\?)) {
            }
            fastcgi_pass 127.0.0.1:9000;
            include fastcgi_params;
            fastcgi_param SCRIPT_NAME     $1;
            fastcgi_param PATH_INFO       $2;
            fastcgi_param SCRIPT_FILENAME $document_root$1;
        }
        location ~ \.php$ {
            fastcgi_pass 127.0.0.1:9000;
            fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
            include fastcgi_params;
        }
        location ~ /\.ht {
            deny all;
        }
    }

以上是关于ini nginx tp3.2服务器修改版的主要内容,如果未能解决你的问题,请参考以下文章

tp3.2迁入nginx 大圣版

TP3.2 Nginx下配置ThinkPhp多入口访问

使用tp3.2框架开发的项目在nginx上配置rewrite规则时遇到的问题

windows下Mysql免安装版,修改my_default.ini配置文件无效的解决办法

ini IVZ:Nginx配置使用Lua作为身份验证模块。您必须使用lua支持安装nginx。请参阅Linux发行版的“openresty”或

tp3.2定义域名修改路径 .htaccess