美文网首页
thinkphp ,laravel,yii2开发运行环境搭建

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

作者: 毒舌程序员 | 来源:发表于2019-02-26 22:24 被阅读0次

    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

    <VirtualHost *:8888>    

        ServerName yii.local.test    

        DocumentRoot /home/www/yii2/web    

        #<Directory "/home/www/yii2/web">    

                #RewriteEngine on    

                #RewriteCond %{REQUEST_FILENAME} !-f    

                #RewriteCond %{REQUEST_FILENAME} !-d    

                #RewriteRule . index.php    

        #</Directory>       

    </VirtualHost>

    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

    <VirtualHost *:8888>    

            ServerName laravel.local.test    

            DocumentRoot /home/www/laravel/public    

            #<Directory "/home/www/laravel/public">    

                #RewriteEngine on    

                #RewriteCond %{REQUEST_FILENAME} !-f    

                #RewriteCond %{REQUEST_FILENAME} !-d    

                #RewriteRule . index.php    

            #</Directory>    

    </VirtualHost>

    PS: .htaccess 代码如下

    <IfModule mod_rewrite.c>    

        <IfModule mod_negotiation.c>    

            Options -MultiViews    

        </IfModule>    

        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]    

    </IfModule>

    ThinkPHP5

    <VirtualHost *:8888>    

        ServerName tp5.local.test    

        DocumentRoot /home/www/tp5/public/     

    </VirtualHost>

    PS: .htaccess 代码如下

    <IfModule mod_rewrite.c>    

        Options +FollowSymlinks -Multiviews    

        RewriteEngine On    

        RewriteCond %{REQUEST_FILENAME} !-d    

        RewriteCond %{REQUEST_FILENAME} !-f    

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

    </IfModule>

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

    相关文章

      网友评论

          本文标题:thinkphp ,laravel,yii2开发运行环境搭建

          本文链接:https://www.haomeiwen.com/subject/vfhtuqtx.html