thinkphp ,laravel,yii2开发运行环境搭建

Nginx

Yii2

server {    

    charset utf-8;    

    client_max_body_size 128M;    

    listen 80;    

    server_name yii.local.test;    

    root  /home/www/yii2/web;    

    index  index.php;    


    location ~* \.(eot|otf|ttf|woff)$ {    

        add_header Access-Control-Allow-Origin *;    

    }    


    location / {    

        try_files $uri $uri/ /index.php?$args;    

    }   


    location ~ \.php$ {    

        include   fastcgi_params;

        fastcgi_index    index.php;

        fastcgi_param    SCRIPT_FILENAME    $document_root$fastcgi_script_name;    

        fastcgi_pass   127.0.0.1:9000;    

        try_files $uri =404;    

    }    

}

Laravel5

server {    

    charset utf-8;    

    client_max_body_size 128M;    

    listen 80;    

    server_name laravel.local.test;    

    root  /home/www/laravel/public;    

    index  index.php;    


    location ~* \.(eot|otf|ttf|woff)$ {    

        add_header Access-Control-Allow-Origin *;    

    }    


    location / {    

        try_files $uri $uri/ /index.php?$args;    

    }   


    location ~ \.php$ {    

        include   fastcgi_params;

        fastcgi_index    index.php;

        fastcgi_param    SCRIPT_FILENAME    $document_root$fastcgi_script_name;    

        fastcgi_pass   127.0.0.1:9000;    

        try_files $uri =404;    

    }    

}

ThinkPHP5

server {    

    charset utf-8;    

    client_max_body_size 128M;    

    listen 80;    

    server_name tp5.local.test;    

    root  /home/www/tp5/public;    

    index  index.php;    


    location ~* \.(eot|otf|ttf|woff)$ {    

        add_header Access-Control-Allow-Origin *;    

    }    


    location / {    

        index    index.html index.php;    

        if ( -f $request_filename) {    

            break;    

        } 


        if ( !-e $request_filename) {    

            rewrite ^/(.*)$ /index.php/$1 last;    

            break;    

        }    

    }    


    location ~ \.php {    

        set $script $uri;    

        set $path_info "";    

        if ($uri ~ "^(.+\.php)(/.+)") {    

            set $script $1;    

            set $path_info $2;    

        }    

    include   fastcgi_params;    

    fastcgi_index    index.php?IF_REWRITE=1;    

    fastcgi_pass   127.0.0.1:9000;    

    fastcgi_param    PATH_INFO    $path_info;    

    fastcgi_param    SCRIPT_FILENAME    $document_root$fastcgi_script_name;    

    fastcgi_param    SCRIPT_NAME    $script;    

    try_files $uri =404;    

    }    

}

PS:tp5在nginx支持这块做的不够好,因为tp框架需要依赖一个服务变量 path_info ,这个变量nginx已经不再使用了,所以需要自己定义

Apache

Yii2

    

    ServerName yii.local.test    

    DocumentRoot /home/www/yii2/web    

    #    

            #RewriteEngine on    

            #RewriteCond %{REQUEST_FILENAME} !-f    

            #RewriteCond %{REQUEST_FILENAME} !-d    

            #RewriteRule . index.php    

    #       

PS: .htaccess 代码如下

RewriteEngine on    

# If a directory or a file exists, use it directly    

RewriteCond %{REQUEST_FILENAME} !-f    

RewriteCond %{REQUEST_FILENAME} !-d    

# Otherwise forward it to index.php    

RewriteRule . index.php

Laravel5

    

        ServerName laravel.local.test    

        DocumentRoot /home/www/laravel/public    

        #    

            #RewriteEngine on    

            #RewriteCond %{REQUEST_FILENAME} !-f    

            #RewriteCond %{REQUEST_FILENAME} !-d    

            #RewriteRule . index.php    

        #    

PS: .htaccess 代码如下

    

        

        Options -MultiViews    

        

    RewriteEngine On    

    # Redirect Trailing Slashes If Not A Folder...    

    RewriteCond %{REQUEST_FILENAME} !-d    

    RewriteRule ^(.*)/$ /$1 [L,R=301]    

    # Handle Front Controller...    

    RewriteCond %{REQUEST_FILENAME} !-d    

    RewriteCond %{REQUEST_FILENAME} !-f    

    RewriteRule ^ index.php [L]    

ThinkPHP5

    

    ServerName tp5.local.test    

    DocumentRoot /home/www/tp5/public/     

PS: .htaccess 代码如下

    

    Options +FollowSymlinks -Multiviews    

    RewriteEngine On    

    RewriteCond %{REQUEST_FILENAME} !-d    

    RewriteCond %{REQUEST_FILENAME} !-f    

    RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L]    

你是不是多少有了解一点,但是你却对这个不精啊 。免费分享tp,laravel,swoole,swoft微服务、SQL性能优化,分布式、高并发等教程,各种大牛都是1-78年PHP开发者,每天还有11年的架构师做课程讲解,助你进阶中高级PHP程序员,增值涨薪!


thinkphp ,laravel,yii2开发运行环境搭建_第1张图片
thinkphp ,laravel,yii2开发运行环境搭建_第2张图片


thinkphp ,laravel,yii2开发运行环境搭建_第3张图片
thinkphp ,laravel,yii2开发运行环境搭建_第4张图片

你可能感兴趣的:(thinkphp ,laravel,yii2开发运行环境搭建)