php初学者项目Thinkphp部署到服务器
Thinkphp是国内⽐较热门的MVC结构的php框架,当然,开发的事这⾥就不多说了,这⾥主要分享⼀下如何将Thinkphp项⽬部署到服务器上
准备⼯具:ssh⼯具、ftp⼯具、云端服务器
这⾥我⽤的是 git bash,fileZilla,CentOS6.5
⾸先我们得先把项⽬⽂件放到我们的服务器上,两种⽅法
1. ⽤git⼯具同步代码到服务器
2. ⽤fileZilla将整个项⽬⽂件上传到服务器上
接下来是服务器的配置
我⽤的环境是LNMP(linux、Nginx、MySql、php)
所以这⾥我们需要去nginx配置⼀下信息
⼀般 f ⽂件在 /usr/local/nginx/conf ⽬录下
编辑该⽂件,server信息
server {
listen 80;
server_name 你的域名;
access_log /data/wwwlogs/access_nginx.log combined;
root 项⽬所在路径(配置到index.php⼊⼝⽂件所在⽬录);
index index.php index.html index.htm;
#error_page 404 /404.html;
#error_page 502 /502.html;
location /nginx_status {
stub_status on;
access_log off;
allow 127.0.0.1;
deny all;
}
location / {
#try_files $uri $uri/ /index.php?$query_string;
if (!-e $request_filename){
rewrite ^/(.*)$ /index.php/$1 last;
}
}
location ~ [^/]\.php(/|$) {
#fastcgi_pass remote_php_ip:9000;
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_pass unix:/dev/shm/php-cgi.sock;
fastcgi_index index.php;
f;
fastcgi_param PATH_INFO $fastcgi_path_info;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; }
location ~ .*\.(gif|jpg|jpeg|png|bmp|swf|flv|mp4|ico)$ {
expires 30d;
access_log off;
}
location ~ .*\.(js|css)?$ {
expires 7d;
access_log off;
}
location ~ /\.ht {
deny all;
}
}
最后呢,保存退出,重启nginx,打开浏览器,输⼊域名,看看效果
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论