In case if you have a content site which may interfere with site resolving functionality of Coveo, then you can use the attribute called 'mode' in the Site definition. This flag will exclude the site from Coveo site resolving feature.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8" ?> | |
<configuration xmlns:patch="http://www.sitecore.net/xmlconfig/"> | |
<sitecore> | |
<sites> | |
<site name="mysite" h:before="site[@name='website']" | |
virtualFolder="/" | |
physicalFolder="/" | |
mode="off" <!-- Setting Mode to off --> | |
rootPath="/sitecore/content" | |
startItem="/home" | |
database="web" | |
domain="extranet" | |
allowDebug="true" | |
cacheHtml="true" | |
htmlCacheSize="50MB" | |
enablePreview="true" | |
enableWebEdit="true" | |
enableDebugger="true" | |
disableClientData="false"/> | |
</sites> | |
</sitecore> | |
</configuration> |