我正在关注 Alan Storm Magento 教程 http://alanstorm.com/layouts_blocks_and_templates
在本教程中,他建议在此位置创建一个 html 模板文件
app/design/frontend/base/default/template/simple_page.phtml
但是,模板看起来像是按模块名称分组到其他目录中的。这是现在的标准吗?
我正在使用 Magento 1.6.2。我不确定该教程是针对哪个版本进行测试的。
* 附加信息 *
我在这个位置 app/design/frontend/base/default/layout/local.xml 创建了一个名为“local.xml”的文件
其中包含:
<layout version="0.1.0">
<default>
<reference name="root">
<block type="page/html" name="root" output="toHtml" template="simple_page.phtml" />
</reference>
</default>
</layout>
然后在目录中文件“simple_page.phtml”:
应用程序/设计/前端/基础/默认/模板/
其中包含:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
</head>
<body>
<p>hello world</p>
</body>
</html>
清除缓存后,我在主页上看到“白屏死机”,但是 helloworld 页面有效。
如果我删除 local.xml,首页会返回。