diff --git a/public/index.php b/public/index.php
index 5282d0e679d783927f3dbe042e70c12b225f695f..e7013561ed809a969b9930fbba0483acb7be2737 100644
--- a/public/index.php
+++ b/public/index.php
@@ -65,18 +65,8 @@ if (file_exists('vendor/autoload.php')) {
     $loader = include 'vendor/autoload.php';
 }
 
-// Support for ZF2_PATH environment variable
-if ($zf2Path = getenv('ZF2_PATH')) {
-    if (isset($loader)) {
-        $loader->add('Zend', $zf2Path . '/Zend');
-    } else {
-        include $zf2Path . '/Zend/Loader/AutoloaderFactory.php';
-        AutoloaderFactory::factory();
-    }
-}
-
 if (!class_exists('Zend\Loader\AutoloaderFactory')) {
-    throw new RuntimeException('Unable to load ZF2.');
+    throw new RuntimeException('Unable to load Zend Framework autoloader.');
 }
 
 // Run the application!