What is the url of this routes.xml?Magento 2.2.6: What is block delimiter?What are the rest api's for the Magento2 modulesWhat is the best way change the label of fields in Shipping Address during checkout?What would prevent me from being able to upload images on migrated products?Magento 2 - Trying to get the items from the order into the success pageThe next arrow hidden on the product images in fotorama zoom pages at magento 2.2.6Magento 2 ErrorWhat is the use of Magento 2.2.6 product image cache?How could I display the last modified date/time in the backend of the product?What is the layout for editing the “Your search returned no results.” page?

Averaging over columns while ignoring zero entries

Did Amazon pay $0 in taxes last year?

Why does a car's steering wheel get lighter with increasing speed

Are small insurances worth it?

Having the player face themselves after the mid-game

How to distinguish easily different soldier of ww2?

Why aren't there more Gauls like Obelix?

Can multiple states demand income tax from an LLC?

What is Tony Stark injecting into himself in Iron Man 3?

Can I challenge the interviewer to give me a proper technical feedback?

Create chunks from an array

Generating a list with duplicate entries

Why isn't P and P/poly trivially the same?

What exactly is the meaning of "fine wine"?

If nine coins are tossed, what is the probability that the number of heads is even?

Why is there an extra space when I type "ls" on the Desktop?

Does the US political system, in principle, allow for a no-party system?

Should we avoid writing fiction about historical events without extensive research?

How does a sound wave propagate?

Ultrafilters as a double dual

How to make sure I'm assertive enough in contact with subordinates?

3.5% Interest Student Loan or use all of my savings on Tuition?

Do I need a return ticket to Canada if I'm a Japanese National?

Use Mercury as quenching liquid for swords?



What is the url of this routes.xml?


Magento 2.2.6: What is block delimiter?What are the rest api's for the Magento2 modulesWhat is the best way change the label of fields in Shipping Address during checkout?What would prevent me from being able to upload images on migrated products?Magento 2 - Trying to get the items from the order into the success pageThe next arrow hidden on the product images in fotorama zoom pages at magento 2.2.6Magento 2 ErrorWhat is the use of Magento 2.2.6 product image cache?How could I display the last modified date/time in the backend of the product?What is the layout for editing the “Your search returned no results.” page?













1















Here is the routes.xml file



<?xml version="1.0"?>
<!--
/**
* Copyright © 2017 Magento. All rights reserved.
* See COPYING.txt for license details.
*/
-->
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:App/etc/routes.xsd">
<router id="standard">
<route id="unit3helloworldblock" frontName="unit3helloworldblock">
<module name="Unit3_HelloWorldBlock" />
</route>
</router>




In Unit3HelloWorldBlockControllerBlock there is this Index.php file



/**
* Class Index
* @package Unit3HelloWorldBlockControllerBlock
*/
class Index extends MagentoFrameworkAppActionAction

protected $_pageFactory;

public function __construct(
MagentoFrameworkAppActionContext $context,
MagentoFrameworkViewResultPageFactory $pageFactory
)
$this->_pageFactory = $pageFactory;
parent::__construct($context);


/**
* return result
*/
public function execute()

$layout = $this->_pageFactory->create()->getLayout();
$block = $layout->createBlock('Unit3HelloWorldBlockBlockTest');
$result = $this->resultFactory->create(MagentoFrameworkControllerResultFactory::TYPE_RAW);
$result->setContents($block->toHtml());
return $result;




I have attempted



/unit3helloworldblock/



/unit3helloworldblock/index.php



/unit3helloworldblock/Controller/Block/Index.php



I have checked to make sure the module is enabled, ran upgrade, compiled, flushed cache, and removed generated.










share|improve this question


























    1















    Here is the routes.xml file



    <?xml version="1.0"?>
    <!--
    /**
    * Copyright © 2017 Magento. All rights reserved.
    * See COPYING.txt for license details.
    */
    -->
    <config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:App/etc/routes.xsd">
    <router id="standard">
    <route id="unit3helloworldblock" frontName="unit3helloworldblock">
    <module name="Unit3_HelloWorldBlock" />
    </route>
    </router>




    In Unit3HelloWorldBlockControllerBlock there is this Index.php file



    /**
    * Class Index
    * @package Unit3HelloWorldBlockControllerBlock
    */
    class Index extends MagentoFrameworkAppActionAction

    protected $_pageFactory;

    public function __construct(
    MagentoFrameworkAppActionContext $context,
    MagentoFrameworkViewResultPageFactory $pageFactory
    )
    $this->_pageFactory = $pageFactory;
    parent::__construct($context);


    /**
    * return result
    */
    public function execute()

    $layout = $this->_pageFactory->create()->getLayout();
    $block = $layout->createBlock('Unit3HelloWorldBlockBlockTest');
    $result = $this->resultFactory->create(MagentoFrameworkControllerResultFactory::TYPE_RAW);
    $result->setContents($block->toHtml());
    return $result;




    I have attempted



    /unit3helloworldblock/



    /unit3helloworldblock/index.php



    /unit3helloworldblock/Controller/Block/Index.php



    I have checked to make sure the module is enabled, ran upgrade, compiled, flushed cache, and removed generated.










    share|improve this question
























      1












      1








      1








      Here is the routes.xml file



      <?xml version="1.0"?>
      <!--
      /**
      * Copyright © 2017 Magento. All rights reserved.
      * See COPYING.txt for license details.
      */
      -->
      <config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:App/etc/routes.xsd">
      <router id="standard">
      <route id="unit3helloworldblock" frontName="unit3helloworldblock">
      <module name="Unit3_HelloWorldBlock" />
      </route>
      </router>




      In Unit3HelloWorldBlockControllerBlock there is this Index.php file



      /**
      * Class Index
      * @package Unit3HelloWorldBlockControllerBlock
      */
      class Index extends MagentoFrameworkAppActionAction

      protected $_pageFactory;

      public function __construct(
      MagentoFrameworkAppActionContext $context,
      MagentoFrameworkViewResultPageFactory $pageFactory
      )
      $this->_pageFactory = $pageFactory;
      parent::__construct($context);


      /**
      * return result
      */
      public function execute()

      $layout = $this->_pageFactory->create()->getLayout();
      $block = $layout->createBlock('Unit3HelloWorldBlockBlockTest');
      $result = $this->resultFactory->create(MagentoFrameworkControllerResultFactory::TYPE_RAW);
      $result->setContents($block->toHtml());
      return $result;




      I have attempted



      /unit3helloworldblock/



      /unit3helloworldblock/index.php



      /unit3helloworldblock/Controller/Block/Index.php



      I have checked to make sure the module is enabled, ran upgrade, compiled, flushed cache, and removed generated.










      share|improve this question














      Here is the routes.xml file



      <?xml version="1.0"?>
      <!--
      /**
      * Copyright © 2017 Magento. All rights reserved.
      * See COPYING.txt for license details.
      */
      -->
      <config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:App/etc/routes.xsd">
      <router id="standard">
      <route id="unit3helloworldblock" frontName="unit3helloworldblock">
      <module name="Unit3_HelloWorldBlock" />
      </route>
      </router>




      In Unit3HelloWorldBlockControllerBlock there is this Index.php file



      /**
      * Class Index
      * @package Unit3HelloWorldBlockControllerBlock
      */
      class Index extends MagentoFrameworkAppActionAction

      protected $_pageFactory;

      public function __construct(
      MagentoFrameworkAppActionContext $context,
      MagentoFrameworkViewResultPageFactory $pageFactory
      )
      $this->_pageFactory = $pageFactory;
      parent::__construct($context);


      /**
      * return result
      */
      public function execute()

      $layout = $this->_pageFactory->create()->getLayout();
      $block = $layout->createBlock('Unit3HelloWorldBlockBlockTest');
      $result = $this->resultFactory->create(MagentoFrameworkControllerResultFactory::TYPE_RAW);
      $result->setContents($block->toHtml());
      return $result;




      I have attempted



      /unit3helloworldblock/



      /unit3helloworldblock/index.php



      /unit3helloworldblock/Controller/Block/Index.php



      I have checked to make sure the module is enabled, ran upgrade, compiled, flushed cache, and removed generated.







      magento2.2.6






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked 11 hours ago









      tjjentjjen

      318115




      318115




















          3 Answers
          3






          active

          oldest

          votes


















          1














          Solution



          Your url should be formed like this: unit3helloworldblock/block/index (or even unit3helloworldblock/block since your controller name is Index)



          Explanation



          The url to your controller is formed according to the follow pattern: <front-name>/<controller-name>/<action-name>




          front-name




          This is the front-name you defined in the routes.xml




          Controller-name




          This is your folder structure. The router is already going to look inside your Controller folder from your module.



          Bear mind if you have multiple levels inside your controller folder. 'Controller/Block/Frontend/Index', your controller name is 'block_frontend;.




          Action-name




          This is the name of your controller action.



          You can find more information here: https://devdocs.magento.com/guides/v2.3/extension-dev-guide/routing.html






          share|improve this answer






























            1














            The url is built according this pattern:



            /[frontname]/[controller]/[action]


            If the action is called Index that part must not be used. Therefore for your controller called Block and the action Index the url should be:



            /unit3helloworldblock/block/


            If your controller is called Index (directory) you can use just the frontname for your url:



            /unit3helloworldblock/





            share|improve this answer






























              1














              Your URL into this case is,



              unit3helloworldblock/block



              Or



              unit3helloworldblock/block/index






              share|improve this answer






















                Your Answer








                StackExchange.ready(function()
                var channelOptions =
                tags: "".split(" "),
                id: "479"
                ;
                initTagRenderer("".split(" "), "".split(" "), channelOptions);

                StackExchange.using("externalEditor", function()
                // Have to fire editor after snippets, if snippets enabled
                if (StackExchange.settings.snippets.snippetsEnabled)
                StackExchange.using("snippets", function()
                createEditor();
                );

                else
                createEditor();

                );

                function createEditor()
                StackExchange.prepareEditor(
                heartbeatType: 'answer',
                autoActivateHeartbeat: false,
                convertImagesToLinks: false,
                noModals: true,
                showLowRepImageUploadWarning: true,
                reputationToPostImages: null,
                bindNavPrevention: true,
                postfix: "",
                imageUploader:
                brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
                contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
                allowUrls: true
                ,
                onDemand: true,
                discardSelector: ".discard-answer"
                ,immediatelyShowMarkdownHelp:true
                );



                );













                draft saved

                draft discarded


















                StackExchange.ready(
                function ()
                StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f265080%2fwhat-is-the-url-of-this-routes-xml%23new-answer', 'question_page');

                );

                Post as a guest















                Required, but never shown

























                3 Answers
                3






                active

                oldest

                votes








                3 Answers
                3






                active

                oldest

                votes









                active

                oldest

                votes






                active

                oldest

                votes









                1














                Solution



                Your url should be formed like this: unit3helloworldblock/block/index (or even unit3helloworldblock/block since your controller name is Index)



                Explanation



                The url to your controller is formed according to the follow pattern: <front-name>/<controller-name>/<action-name>




                front-name




                This is the front-name you defined in the routes.xml




                Controller-name




                This is your folder structure. The router is already going to look inside your Controller folder from your module.



                Bear mind if you have multiple levels inside your controller folder. 'Controller/Block/Frontend/Index', your controller name is 'block_frontend;.




                Action-name




                This is the name of your controller action.



                You can find more information here: https://devdocs.magento.com/guides/v2.3/extension-dev-guide/routing.html






                share|improve this answer



























                  1














                  Solution



                  Your url should be formed like this: unit3helloworldblock/block/index (or even unit3helloworldblock/block since your controller name is Index)



                  Explanation



                  The url to your controller is formed according to the follow pattern: <front-name>/<controller-name>/<action-name>




                  front-name




                  This is the front-name you defined in the routes.xml




                  Controller-name




                  This is your folder structure. The router is already going to look inside your Controller folder from your module.



                  Bear mind if you have multiple levels inside your controller folder. 'Controller/Block/Frontend/Index', your controller name is 'block_frontend;.




                  Action-name




                  This is the name of your controller action.



                  You can find more information here: https://devdocs.magento.com/guides/v2.3/extension-dev-guide/routing.html






                  share|improve this answer

























                    1












                    1








                    1







                    Solution



                    Your url should be formed like this: unit3helloworldblock/block/index (or even unit3helloworldblock/block since your controller name is Index)



                    Explanation



                    The url to your controller is formed according to the follow pattern: <front-name>/<controller-name>/<action-name>




                    front-name




                    This is the front-name you defined in the routes.xml




                    Controller-name




                    This is your folder structure. The router is already going to look inside your Controller folder from your module.



                    Bear mind if you have multiple levels inside your controller folder. 'Controller/Block/Frontend/Index', your controller name is 'block_frontend;.




                    Action-name




                    This is the name of your controller action.



                    You can find more information here: https://devdocs.magento.com/guides/v2.3/extension-dev-guide/routing.html






                    share|improve this answer













                    Solution



                    Your url should be formed like this: unit3helloworldblock/block/index (or even unit3helloworldblock/block since your controller name is Index)



                    Explanation



                    The url to your controller is formed according to the follow pattern: <front-name>/<controller-name>/<action-name>




                    front-name




                    This is the front-name you defined in the routes.xml




                    Controller-name




                    This is your folder structure. The router is already going to look inside your Controller folder from your module.



                    Bear mind if you have multiple levels inside your controller folder. 'Controller/Block/Frontend/Index', your controller name is 'block_frontend;.




                    Action-name




                    This is the name of your controller action.



                    You can find more information here: https://devdocs.magento.com/guides/v2.3/extension-dev-guide/routing.html







                    share|improve this answer












                    share|improve this answer



                    share|improve this answer










                    answered 10 hours ago









                    Matthias_CompactCodeMatthias_CompactCode

                    963




                    963























                        1














                        The url is built according this pattern:



                        /[frontname]/[controller]/[action]


                        If the action is called Index that part must not be used. Therefore for your controller called Block and the action Index the url should be:



                        /unit3helloworldblock/block/


                        If your controller is called Index (directory) you can use just the frontname for your url:



                        /unit3helloworldblock/





                        share|improve this answer



























                          1














                          The url is built according this pattern:



                          /[frontname]/[controller]/[action]


                          If the action is called Index that part must not be used. Therefore for your controller called Block and the action Index the url should be:



                          /unit3helloworldblock/block/


                          If your controller is called Index (directory) you can use just the frontname for your url:



                          /unit3helloworldblock/





                          share|improve this answer

























                            1












                            1








                            1







                            The url is built according this pattern:



                            /[frontname]/[controller]/[action]


                            If the action is called Index that part must not be used. Therefore for your controller called Block and the action Index the url should be:



                            /unit3helloworldblock/block/


                            If your controller is called Index (directory) you can use just the frontname for your url:



                            /unit3helloworldblock/





                            share|improve this answer













                            The url is built according this pattern:



                            /[frontname]/[controller]/[action]


                            If the action is called Index that part must not be used. Therefore for your controller called Block and the action Index the url should be:



                            /unit3helloworldblock/block/


                            If your controller is called Index (directory) you can use just the frontname for your url:



                            /unit3helloworldblock/






                            share|improve this answer












                            share|improve this answer



                            share|improve this answer










                            answered 10 hours ago









                            HelgeBHelgeB

                            2,1771318




                            2,1771318





















                                1














                                Your URL into this case is,



                                unit3helloworldblock/block



                                Or



                                unit3helloworldblock/block/index






                                share|improve this answer



























                                  1














                                  Your URL into this case is,



                                  unit3helloworldblock/block



                                  Or



                                  unit3helloworldblock/block/index






                                  share|improve this answer

























                                    1












                                    1








                                    1







                                    Your URL into this case is,



                                    unit3helloworldblock/block



                                    Or



                                    unit3helloworldblock/block/index






                                    share|improve this answer













                                    Your URL into this case is,



                                    unit3helloworldblock/block



                                    Or



                                    unit3helloworldblock/block/index







                                    share|improve this answer












                                    share|improve this answer



                                    share|improve this answer










                                    answered 10 hours ago









                                    Dhiren VasoyaDhiren Vasoya

                                    4,37751843




                                    4,37751843



























                                        draft saved

                                        draft discarded
















































                                        Thanks for contributing an answer to Magento Stack Exchange!


                                        • Please be sure to answer the question. Provide details and share your research!

                                        But avoid


                                        • Asking for help, clarification, or responding to other answers.

                                        • Making statements based on opinion; back them up with references or personal experience.

                                        To learn more, see our tips on writing great answers.




                                        draft saved


                                        draft discarded














                                        StackExchange.ready(
                                        function ()
                                        StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f265080%2fwhat-is-the-url-of-this-routes-xml%23new-answer', 'question_page');

                                        );

                                        Post as a guest















                                        Required, but never shown





















































                                        Required, but never shown














                                        Required, but never shown












                                        Required, but never shown







                                        Required, but never shown

































                                        Required, but never shown














                                        Required, but never shown












                                        Required, but never shown







                                        Required, but never shown







                                        Popular posts from this blog

                                        Virtualbox - Configuration error: Querying “UUID” failed (VERR_CFGM_VALUE_NOT_FOUND)“VERR_SUPLIB_WORLD_WRITABLE” error when trying to installing OS in virtualboxVirtual Box Kernel errorFailed to open a seesion for the virtual machineFailed to open a session for the virtual machineUbuntu 14.04 LTS Virtualbox errorcan't use VM VirtualBoxusing virtualboxI can't run Linux-64 Bit on VirtualBoxUnable to insert the virtual optical disk (VBoxguestaddition) in virtual machine for ubuntu server in win 10VirtuaBox in Ubuntu 18.04 Issues with Win10.ISO Installation

                                        Are there any comparative studies done between Ashtavakra Gita and Buddhim?How is it wrong to believe that a self exists, or that it doesn't?Can you criticise or improve Ven. Bodhi's description of MahayanaWas the doctrine of 'Anatta', accepted as doctrine by modern Buddhism, actually taught by the Buddha?Relationship between Buddhism, Hinduism and Yoga?Comparison of Nirvana, Tao and Brahman/AtmaIs there a distinction between “ego identity” and “craving/hating”?Are there many differences between Taoism and Buddhism?Loss of “faith” in buddhismSimilarity between creation in Abrahamic religions and beginning of life in Earth mentioned Agganna Sutta?Are there studies about the difference between meditating in the morning versus in the evening?Can one follow Hinduism and Buddhism at the same time?Are there any prohibitions on participating in other religion's practices?Psychology of 'flow'

                                        Where is the suspend/hibernate button in GNOME Shell? Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern)No suspend option in UI on Bionic BeaverHow can I set sleep mode in ubuntu18.04 LTS and what is the short cut key to do so?17.10 suspend not availableUbuntu 18.04 LTS missing sleep optionUbuntu 18.04 LTS - missing suspend option when power button is pressedHow to put Thinkpad X1 Extreme to sleep in Ubuntu 18.10?Suspend Button in interactive power button menu18.04 - Keep programs running after logging outway to disable Hibernate from within gconf-editor so button disappears?How can I hibernate from GNOME Shell?How can I hibernate/suspend from the command line and do so at a specific timeNo permission to suspend/hibernate after upgrading to 12.10MATE - Missing Suspend and Hibernate buttons, pressing power button shutdowns system immediatelyUbuntu 14.04: Suspend, Hibernate and Suspend-hybrid in the menu?Change “power-button-action” comand for “hibernate” option in GNOME 3.18Shutdown / Power off button does always go to suspend on 17.10Hibernate after suspend stopped working in 17.10Why doesn't the keyboard screenshot button work on Ubuntu with GNOME shell?