how do I modify the AndroidManifest in Ionic app to filter intent to given URI path?

I have modified my Ionic app's AndroidManifest.xml with the following:

<intent-filter android:label="@string/launcher_name">
      <action android:name="android.intent.action.MAIN" />                                                                                                                                   
      <category android:name="android.intent.category.LAUNCHER" />
</intent-filter>

How can I point from this intent-filter to a given URI path (with it's own detailed controller) in my Ionic app?

Thank you,

G