thinkphp部署到Nginx

server {
    listen 80;
    server_name ly.snail.com;

    index index.php index.html;
    root /var/www/html/snail;

    location ~ \.php$ {
        try_files $uri =404;
        fastcgi_split_path_info ^(.+\.php)(/.+)$;
        fastcgi_pass php:9000;
        fastcgi_index index.php;
        include fastcgi_params;
        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
        fastcgi_param PATH_INFO $fastcgi_path_info;

    }

    location / {  

    # !!!url重写!!!
    if (!-e $request_filename) {  
        rewrite ^/index.php(.*)$ /index.php?s=$1 last;  
        rewrite ^(.*)$ /index.php?s=$1 last;  
        break;  
    }  
 }  
}
--------------------- 
作者:达斯熊本 
来源:CSDN 
原文:https://blog.csdn.net/youyangyouni/article/details/80653037 
版权声明:本文为博主原创文章,转载请附上博文链接!

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章