thinkphp nginx 配置

Posted yangcclug

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了thinkphp nginx 配置相关的知识,希望对你有一定的参考价值。

thinkphp convention配置:
‘URL_MODEL‘ => ‘2‘, //URL模式

nginx rewrite配置:
 if (!-e $request_filename) {
   rewrite  ^(.*)$  /index.php?s=$1  last;
   break;
    }

如果你的ThinkPHP安装在二级目录,Nginx的伪静态方法设置如下,其中youdomain是所在的目录名称
location /youdomain/ {
        if (!-e $request_filename){
            rewrite  ^/youdomain/(.*)$  /youdomain/index.php?s=$1  last;
        }
    }
 

以上是关于thinkphp nginx 配置的主要内容,如果未能解决你的问题,请参考以下文章

nginx+thinkphp5配置

thinkphp nginx 配置

Thinkphp+Nginx(PHPstudy)下报的404错误解决

nginx 配置 ThinkPHP Rewrite

Thinkphp+Nginx(PHPstudy)下报的404错误,403错误解决

thinkphp nginx配置