php 代客站点使用代客定制驱动程序更改文档根目录

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 代客站点使用代客定制驱动程序更改文档根目录相关的知识,希望对你有一定的参考价值。

<?php

// Change 'site_folder_name' with your valet site's name, e.g., gutenberg
// Change '/root-folder' with the root folder you want to start
// when you type e.g., gutenberg.dev
class MyValetDriver extends ValetDriver
{
    /**
     * Determine if the driver serves the request.
     *
     * @param  string  $sitePath
     * @param  string  $siteName
     * @param  string  $uri
     * @return bool
     */
    public function serves( $sitePath, $siteName, $uri )
    {
        if ( $siteName === 'site_folder_name' ) {
            if ( file_exists( $sitePath . '/' ) ) {
                return true;
            }
        }

        return false;
    }

    /**
     * Determine if the incoming request is for a static file.
     *
     * @param  string  $sitePath
     * @param  string  $siteName
     * @param  string  $uri
     * @return string|false
     */
    public function isStaticFile( $sitePath, $siteName, $uri )
    {
        if ( file_exists( $sitePath . $uri ) && ! is_dir( $sitePath . $uri ) && pathinfo( $sitePath . $uri )['extension'] != 'php' ) {
            return $sitePath . $uri;
        }

        return false;
    }

    /**
     * Get the fully resolved path to the application's front controller.
     *
     * @param  string  $sitePath
     * @param  string  $siteName
     * @param  string  $uri
     * @return string
     */
    public function frontControllerPath( $sitePath, $siteName, $uri )
    {

        if ( $siteName === 'site_folder_name' ) {
            $uri = '/root-folder' . $uri;
        }

        // The requested resource is a PHP file.
        if ( file_exists ( $sitePath . $uri ) && isset( pathinfo( $sitePath . $uri )['extension'] ) ) 
        {
            if ( pathinfo( $sitePath . $uri )['extension'] != 'php' ) {

                // Set the content type to 'text/css'
                if ( pathinfo( $sitePath . $uri )['extension'] == 'css' ) {
                    header( 'Content-type: text/css' );
                }

                return $sitePath . $uri;
            }
        }

        // The requested resource is a directory and contains a child ‘index.php’ file.
        if ( file_exists ( $sitePath . $uri . '/index.php' ) ) 
        {
            return $sitePath . $uri . '/index.php';
        }

        // If the path does not exist, serve this default file.
        return $sitePath . '/excludes.txt';
    }
}

以上是关于php 代客站点使用代客定制驱动程序更改文档根目录的主要内容,如果未能解决你的问题,请参考以下文章

Homebrew PHP 似乎没有链接。 - 代客

php Magento的Laravel代客司机1

php JavaScript SPA Laravel代客司机。

php 代客的Magento 1驱动程序(https://laravel.com/docs/5.3/valet) - 我们在我们的Git仓库中将Magento放在一个名为'magento

为啥代客共享不像本地代客那样在请求中添加斜线

代客工作但无法创建新的 Laravel 安装?