我正在制作一个已启用的 Magento 模块,并且我的缓存已关闭。
使用本教程... http://www.pierrefay.com/magento-create-controller-36
这是我被要求在app/code/local/Pfay/Test
.
class Pfay_Test_IndexController extends Mage_Core_Controller_Front_Action
{
public function indexAction ()
{
echo 'test index';
}
public function mamethodeAction ()
{
echo 'test mymethod';
}
}
但是,当我进入magento/Pfay/Test/index
我的网络浏览器时,我得到一个 404 页面,而不是控制器。