凌的博客

您现在的位置是: 首页 > 学无止境 > PHP > 

PHP

thinkphp 配置 nginx.conf 伪静态规则

2015-05-01 PHP 682
    #如果请求既不是一个文件,也不是一个目录,则执行一下重写规则     if (!-e $request_filename)         {             #地址作为将
    #如果请求既不是一个文件,也不是一个目录,则执行一下重写规则
    if (!-e $request_filename)
        {
            #地址作为将参数rewrite到index.php上。
            rewrite ^/(.*)$ /index.php/$1;
            #若是子目录则使用下面这句,将subdir改成目录名称即可。
            #rewrite ^/subdir/(.*)$ /subdir/index.php/$1;
        }

文章评论

0条评论