1

http://alanstorm.com/magento_controller_hello_worldのチュートリアルに従いました が、リンク filipeferminiano.com/lojateste/helloworld が機能しない理由がわかりません。ここに私のconfig.xmlがあります

<config>    
<modules>
    <ffdotcom_Helloworld>
        <version>0.1.0</version>
    </ffdotcom_Helloworld>
</modules> <frontend>
    <routers>
        <helloworld>
            <use>standard</use>
            <args>
                <module>ffdotcom_Helloworld</module>
                <frontName>helloworld</frontName>
            </args>
        </helloworld>
    </routers>  
</frontend>

4

2 に答える 2

2

作成: app/code/local/Ffdotcom/Helloworld/etc/config.xml

<?xml version="1.0"?>
<config>
  <modules>
    <Ffdotcom_Helloworld>
        <version>1.0.0</version>
    </Ffdotcom_Helloworld>    
  </modules>
  <frontend>
    <routers>
        <helloworld>
            <use>standard</use>
            <args>
                <module>Ffdotcom_Helloworld</module>
                <frontName>helloworld</frontName>
            </args>
        </helloworld>
    </routers>  
  </frontend>
 </config>

作成: app/code/local/Ffdotcom/Helloworld/controllers/IndexController.php

<?php
class Ffdotcom_Helloworld_IndexController extends Mage_Core_Controller_Front_Action
{

    public function indexAction(){
        echo 'hello world';
    }

}

作成: app/etc/modules/Ffdotcom_Helloworld.xml

<?xml version="1.0"?>
<config>
   <modules>
       <Ffdotcom_Helloworld>
            <active>true</active>
            <codePool>local</codePool>
       </Ffdotcom_Helloworld>
   </modules>
</config>
于 2013-01-20T14:58:05.123 に答える
1

モジュール名の最初の「f」は、 xpathで大文字にする必要があります。frontend/routers/helloworld/args

于 2013-01-20T11:47:48.270 に答える