我刚刚为我网站的 Android 应用程序设置了 App Indexing,并根据https://www.example.com/test和https://example.com/test中指定的说明进行了一些测试:/ /developers.google.com/app-indexing/android/test(使用 Android Studio 测试 URL)
这是我的 Android 清单中的意图过滤器:
<intent-filter android:label="@string/filter_title_default">
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="https"
android:host="example.com"
android:pathPrefix="/test" />
</intent-filter>
我注意到https://www.example.com/test失败,但不是https://example.com/test。除了为 www.example.com/test 指定另一个意图过滤器之外,我该如何解决这个问题?