微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

nginx部署thinkphp跟laravel

       博主最近在Centos+Nginx环境下部署自己练手的一个TP5项目,过程遇到一些问题,不过最终成功解决了问题,所以将配置代码分享给大家,让大家可以少走一些弯路。

      首先是Laravel5的配置代码,将test.com替换成自己的域名,将testProject替换成自己项目所在地址,代码如下:

server {
    listen  80;
    server_name test.com;
    set $root_path 'testProject';
    root $root_path;
    index index.PHP index.html index.htm;
    try_files $uri $uri/ @rewrite;
    location @rewrite {
      rewrite ^/(.*)$ /index.PHP?_url=/$1;
    }
    location ~ \.PHP {
      fastcgi_pass 127.0.0.1:9000;
      fastcgi_index /index.PHP;
      fastcgi_split_path_info       ^(.+\.PHP)(/.+)$;
      fastcgi_param PATH_INFO       $fastcgi_path_info;
      fastcgi_param PATH_TRANSLATED $document_root$fastcgi_path_info;
      fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
      include fastcgi_params;
    }
    location ~* ^/(css|img|js|flv|swf|download)/(.+)$ {
       root $root_path;
    }
    location ~ /\.ht {
       deny all;
    }
}

       下面是ThinkPHP项目的配置,将test.com替换成自己的域名,将testProject替换成自己项目所在地址,代码如下:

server {
     listen  80;
     server_name test.com;
     set $root_path 'testProject';
     root $root_path;
     index index.PHP index.html index.htm;
     try_files $uri $uri/ @rewrite;
     location @rewrite {
       rewrite ^/(.*)$ /index.PHP?_url=/$1;
     }
     location ~ \.PHP {
       fastcgi_pass 127.0.0.1:9000;
       fastcgi_index /index.PHP;
       fastcgi_split_path_info       ^(.+\.PHP)(/.+)$;
       fastcgi_param PATH_INFO       $fastcgi_path_info;
       fastcgi_param PATH_TRANSLATED $document_root$fastcgi_path_info;
       fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
       include fastcgi_params;
     }
     location ~* ^/(css|img|js|flv|swf|download)/(.+)$ {
       root $root_path;
     }
     location ~ /\.ht {
       deny all;
     }
     location / {
       if (!-e $request_filename) {
          rewrite ^(.*)$ /index.PHP?s=/$1 last;
          break;
       }
     }
 }

       记得修改完后重启Nginx,这样配置才会生效,以上便是Nginx环境下,thinkPHP跟Laravel的配置代码

       更多分享请关注微信公众号

 

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 [email protected] 举报,一经查实,本站将立刻删除。

相关推荐