尝试构建自定义驱动程序以使用Valet在macOS上运行Omeka。
我试图复制Omeka希望使用的.htaccess文件中看到的内容-知道代客不使用.htaccess。
<?php
class LocalValetDriver extends ValetDriver {
/**
* Determine if the driver serves the request.
*
* @param string $sitePath
* @param string $siteName
* @param string $uri
* @return void
*/
public function serves($sitePath, $siteName, $uri) {
return true;
}
/**
* 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 (substr( $uri, 0, strlen('/install') ) === '/install') {
return $sitePath . '/install/install.php';
}
if (substr( $uri, 0, strlen('/admin') ) === '/admin') {
return $sitePath . '/admin/index.php';
}
return $sitePath . '/index.php';
}
}
当前驱动程序尝试重定向到.composer / vendor / laravel / valet / install /,而不是运行Omeka安装过程。