14,983
edits
mNo edit summary |
|||
| Line 80: | Line 80: | ||
and | and | ||
<pre> | <pre> | ||
*.example.com/* | |||
</pre> | </pre> | ||
These two patterns conflict with each other, causing the system to treat them as duplicate entities. | These two patterns conflict with each other, causing the system to treat them as duplicate entities. The detailed linking rules are mentioned in the official documentation: | ||
<pre> | |||
You can use the operations listed below | |||
Entire site: www.mysite.com/* | |||
Parts of site: www.mysite.com/faq/* | |||
Entire domain: *.mysite.com/* | |||
Quotes for exact match: "www.mysite.com/faq" | |||
Sites without quotes will match any path after the specified address: | |||
www.mysite.com/faq → www.mysite.com/faq*. | |||
</pre> | |||
'''Solution:''' | '''Solution:''' | ||
Simply remove one of the patterns to resolve the issue. It's recommended to keep the broader pattern <code> | Simply remove one of the patterns to resolve the issue. It's recommended to keep the broader pattern <code>*.example.com/*</code> as it already includes <code>example.com</code>. | ||
=== Troubleshooting: "Quota exceeded for Search lite requests" Error in Discovery Engine === | === Troubleshooting: "Quota exceeded for Search lite requests" Error in Discovery Engine === | ||