php 代客的Magento 1驱动程序(https://laravel.com/docs/5.3/valet) - 我们在我们的Git仓库中将Magento放在一个名为'magento
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 代客的Magento 1驱动程序(https://laravel.com/docs/5.3/valet) - 我们在我们的Git仓库中将Magento放在一个名为'magento相关的知识,希望对你有一定的参考价值。
<?php
class Magento1ValetDriver extends ValetDriver
{
/**
* Determine if the driver serves the request.
*
* @param string $sitePath
* @param string $siteName
* @param string $uri
* @return boolean
*/
public function serves($sitePath, $siteName, $uri)
{
return file_exists($sitePath . '/magento/app/etc/local.xml') && file_exists($sitePath . '/magento/index.php');
}
/**
* 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($staticFilePath = $sitePath . '/magento' . $uri)) {
return $staticFilePath;
}
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)
{
return $sitePath . '/magento/index.php';
}
}
以上是关于php 代客的Magento 1驱动程序(https://laravel.com/docs/5.3/valet) - 我们在我们的Git仓库中将Magento放在一个名为'magento的主要内容,如果未能解决你的问题,请参考以下文章
php 代客站点使用代客定制驱动程序更改文档根目录
php 代客站点使用代客定制驱动程序更改文档根目录
Homebrew PHP 似乎没有链接。 - 代客
php JavaScript SPA Laravel代客司机。
magento install
php Laravel Valet Magento 2驱动程序,帮助我每天使用Nginx和Mysql安装本地Magento 2开发位置。欲了解更多信息