0

I have a Magento controller and a phtml file. How can I redirect to that file in my controller action? I searched the net, but found nothing. Ideas?

Thanks!

EOB
  • 2,975
  • 17
  • 43
  • 70
  • This should help.http://stackoverflow.com/questions/11424179/how-do-i-link-to-another-action-in-magento-whilst-passing-a-parameter-to-the-new – jdhaar Jul 12 '13 at 12:03

1 Answers1

1

If you mean that you want to show the contents of your phtml-file when visiting the URL of the controller, you should follow this tutorial: Baobaz Controller Tutorial
It has everything in it you need. Even interaction between the controller and the template.
Remember to adjust the paths and class names to your solution.

SebiF
  • 509
  • 5
  • 16