我想在Android的网址末尾使用斜杠处理一些深层链接,例如:
https://www.xxx.xxx/mobile/
https://www.xxx.xxx/mobile
一个在URL的末尾有一个斜杠,而另一个没有。
我想用
<data
android:host="www.xxx.xxx"
android:pathPattern="/mobile/?"
android:scheme="https" />
处理它,但它不起作用。有没有人有任何想法?
答案 0 :(得分:1)
使用多个pathPattern:
<data android:host="www.xxx.xxx" android:pathPattern="/mobile" android:scheme="https" />
<data android:host="www.xxx.xxx" android:pathPattern="/mobile/" android:scheme="https" />
答案 1 :(得分:1)
而不是
android:pathPattern="/mobile/?"
使用
android:pathPattern="/mobile.?"