Hello,
I recently purchased GTranslate enterprise and I am trying to get setup on Wordpress that is hosted on IIS 7 and Windows platform.
I have setup the CNAME records in my DNS, but everything seems to redirecting to the main www.xyz.com site as opposed to the es.xyz.com, etc. site. Am I missing something obvious?
I am guessing it may have to do with URL rewrite rules, he is how they are configured in the web.config.
<rewrite>
<rules>
<rule name="wordpress" patternSyntax="Wildcard">
<match url="*"/>
<conditions>
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true"/>
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true"/>
</conditions>
<action type="Rewrite" url="index.php"/>
</rule></rules>
</rewrite>
Any thoughts?
Thanks!
Brandon