diff --git a/cli/Valet/Drivers/Specific/NetteValetDriver.php b/cli/Valet/Drivers/Specific/NetteValetDriver.php
new file mode 100644
index 00000000..1207d162
--- /dev/null
+++ b/cli/Valet/Drivers/Specific/NetteValetDriver.php
@@ -0,0 +1,44 @@
+isActualFile($staticFilePath = $sitePath.'/www/'.$uri)) {
+ return $staticFilePath;
+ }
+
+ return false;
+ }
+
+ /**
+ * Get the fully resolved path to the application's front controller.
+ */
+ public function frontControllerPath(string $sitePath, string $siteName, string $uri): ?string
+ {
+ $_SERVER['DOCUMENT_ROOT'] = $sitePath.'/www';
+ $_SERVER['SCRIPT_FILENAME'] = $sitePath.'/www/index.php';
+ $_SERVER['SCRIPT_NAME'] = '/index.php';
+ $_SERVER['PHP_SELF'] = '/index.php';
+
+ return $sitePath.'/www/index.php';
+ }
+}