Error while following http://alanstorm.com/magento_controller_hello_world:-
Not Found
The requested URL /magento/helloworld was not found on this server.
C:\wamp\www\magento\app\code\local\Bsl\Helloworld\controllers\IndexController.php
<?php
class Bsl_Helloworld_IndexController extends Mage_Core_Controller_Front_Action
{
public function indexAction()
{
echo 'Hello Index!';
}
}
C:\wamp\www\magento\app\code\local\Bsl\Helloworld\etc\config.xml
<config>
<modules>
<Bsl_Helloworld>
<version>0.1.0</version>
</Bsl_Helloworld>
</modules>
<frontend>
<routers>
<helloworld>
<use>standard</use>
<args>
<module>Bsl_Helloworld</module>
<frontName>helloworld</frontName>
</args>
</helloworld>
</routers>
</frontend>
</config>
C:\wamp\www\magento\app\etc\modules\Bsl_Helloworld.xml
<config>
<modules>
<Bsl_Helloworld>
<active>true</active>
<codePool>local</codePool>
</Bsl_Helloworld>
</modules>
</config>