刚刚也在 IRC 频道 ZFTalk 上发布了这个,
希望我能在使用 MAMP 的 ZF2、ZF2 专辑教程、OSX 上获得一些帮助。骨架框架,主页正在运行。
问题:完成第 8.5 节列出专辑后,您在模块/Album/view/album/album/index.phtml 中填写了一些代码,然后他们要求您在http://zf2-tutorial.localhost/上预览页面专辑。
我收到 404,请求的 URL 无法通过路由匹配。
我前往谷歌寻求建议。找到了一个 GIT 存储库,其中包含教程的“完全工作模型”,所以我得到了这个来比较我的代码。如果我将它设置为另一台主机,我会收到相同的 404 路由消息。
仔细研究手册后,它在开始时明确指出,如果您的 httpd.conf / AllowOverride 未设置为 FileInfo,您将无法查看除开始/主页以外的任何内容。
决定扫描整个机器以查找名为 httpd.conf 的文件,以防万一我更改的路径在启动服务器时未被 MAMP 使用。
所以找到了3个,都改了(虽然找到了3个,我相信正确的路由是/private/etc)我的问题仍然存在于我从教程中编写的代码中,以及'working模型'。
有没有人遇到过这个问题?在 stackoverflow Zend Framework 2 .htaccess mamp pro上找到了这个,它与我的问题有相似之处,但尚未解决。这里的任何人都可以帮助我吗?
采取的其他路线包括:检查代码中的拼写错误,检查 application.config.php 是否设置了路线。请指教?:)
模块.php
<?php
namespace Album;
use Album\Model\Album;
use Album\Model\AlbumTable;
use Zend\Db\ResultSet\ResultSet;
use Zend\Db\TableGateway\TableGateway;
class Module
{
public function getAutoloaderConfig()
{
return array(
'Zend\Loader\ClassMapAutoloader' => array(
__DIR__ . '/autoload_classmap.php',
),
'Zend\Loader\StandardAutoloader' => array(
'namespaces' => array(
__NAMESPACE__ => __DIR__ . '/src/' . __NAMESPACE__,
),
),
);
}
public function getConfig()
{
return include __DIR__ . '/config/module.config.php';
}
public function getServiceConfig()
{
return array(
'factories' => array(
'Album\Model\AlbumTable' => function($sm) {
$tableGateway = $sm->get('AlbumTableGateway');
$table = new AlbumTable($tableGateway);
return $table;
},
'AlbumTableGateway' => function ($sm) {
$dbAdapter = $sm->get('Zend\Db\Adapter\Adapter');
$resultSetPrototype = new ResultSet();
$resultSetPrototype->setArrayObjectPrototype(new Album());
return new TableGateway('album', $dbAdapter, null, $resultSetPrototype);
},
),
);
}
}
模块.config.php
<?php
return array(
'controllers' => array(
'invokables' => array(
'Album\Controller\Album' => 'Album\Controller\AlbumController',
),
),
'router' => array(
'routes' => array(
'album' => array(
'type' => 'segment',
'options' => array(
'route' => '/album[/][:action][/:id]',
'constraints' => array(
'action' => '[a-zA-Z][a-zA-Z0-9_-]*',
'id' => '[0-9]+',
),
'defaults' => array(
'controller' => 'Album\Controller\Album',
'action' => 'index',
),
),
),
),
),
'view_manager' => array(
'template_path_stack' => array(
'album' => __DIR__ . '/../view',
),
),
);