见这里 (用第二个配置

把项目移动到/usr/share/nginx/html下,

项目名为tp5,然后直接copy链接博文的第二个


server {
listen 80;
server_name localhost;

#charset koi8-r;
#access_log /var/log/nginx/host.access.log main;

location / {
if (!-e $request_filename) {
rewrite ^(.*)$ /index.php?s=/$1 last;
break;
}
root /usr/share/nginx/html/tp5/public/;
index index.php;
}

#error_page 404 /404.html;

# redirect server error pages to the static page /50x.html
#
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}

# proxy the PHP scripts to Apache listening on 127.0.0.1:80
#
#location ~ \.php$ {
# proxy_pass http://127.0.0.1;
#}

# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
#
location ~ \.php$ {
root /usr/share/nginx/html/tp5/public/;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}

# deny access to .htaccess files, if Apache’s document root
# concurs with nginx’s one
#
#location ~ /\.ht {
# deny all;
#}
}
———————
作者:上官二狗
来源:CSDN
原文:https://blog.csdn.net/qq_36431213/article/details/80456993
版权声明:本文为博主原创文章,转载请附上博文链接!

  1. 设置背景颜色:body {background:#000 ;}
  2. 设置背景图片:body {background:url(”http:://www.dfaaf/1.jpg’);}
  3. 设置背景图片自适应:body{background-repeat:no-repeat; background-size:100% 100%;-moz-background-size:100% 100%;}

在控制器中controller
public function school()
{
// 给模板变量name赋值
$id=input(‘get.id’);//页数
$this->assign(‘id’,$id);
//多个参数
$this->assign([
‘name’ =>’thinkphp’,
’email’=>’thinkphp@qq.com’
]);
return $this->fetch();

}

在控制器中controller
public function school()
{
// 给模板变量name赋值
$id=input(‘get.id’);//页数
$this->assign(‘id’,$id);
//多个参数
$this->assign([
‘name’ =>’thinkphp’,
’email’=>’thinkphp@qq.com’
]);
return $this->fetch();

}