> For the complete documentation index, see [llms.txt](https://docs.scandipwa.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.scandipwa.com/tutorials/accessing-magento-2-controllers/step-3-accessing-magento-2-controller-bypassing-scandipwa-frontend.md).

# STEP-3 Accessing Magento 2 Controller, Bypassing ScandiPWA frontend

1. Add **ScandiPWA\_Route717** as a sequence to your **\[MODULE]/module.xml**

{% code title=" app/code/ScandiPWA/Version/etc/module.xml" %}

```markup
<?xml version="1.0" ?>
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xsi:noNamespaceSchemaLocation="urn:magento:framework:Module/etc/module.xsd">
   <module name="ScandiPWA_Version">
       <sequence>
           <module name="ScandiPWA_Route717" />
       </sequence>
   </module>
</config>

```

{% endcode %}

2\. Create **di.xml** file in **\[MODULE]/etc** folder

{% code title=" app/code/ScandiPWA/Version/etc/di.xml" %}

```markup
<?xml version="1.0" ?>
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:ObjectManager/etc/config.xsd">
   <virtualType name="ScandiPWA\Router\Controller\ConfigurableRouter" type="ScandiPWA\Router\Controller\Router">
       <arguments>
           <argument name="ignoredURLs" xsi:type="array">
               <item name="getscandipwaversion" xsi:type="string">^/scandipwa/version.*</item>
           </argument>
       </arguments>
   </virtualType>
</config>

```

{% endcode %}

3\. Run and `set:up`  and `c:f`,  navigate to [**http://localhost/scandipwa/version**](https://localhost/scandipwa/version) you should see the output.
