一聚教程网:一个值得你收藏的教程网站

最新下载

热门教程

Laravel的Nginx配置详解

时间:2014-03-22 编辑:简简单单 来源:一聚教程网

例子

 代码如下 复制代码

server {
    listen 80;
    server_name tool.lu;
    root /var/www/html/www.111com.net/public;
    index index.html index.php;

    location / {
        try_files $uri $uri/ /index.php?$query_string;
    }

    location ~ .php$ {
        fastcgi_pass 127.0.0.1:9000;
        fastcgi_index index.php;
        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
        include fastcgi_params;
    }
}

if (!-f $request_filename)貌似并不是一个好的做法

热门栏目