2

我在 winhost 上托管一个站点,并且我正在使用 IIS URLRewrite 来允许将主机上的子文件夹映射到子域。

IE

~/

〜/我的应用程序/

~/KenticoCMS/

使用根 web.config 中的 IIS URL 重写规则将“mydomain.com”的请求路由到 ~/KenticoCMS/ 并将“myapp.mydomain.com”的请求路由到 ~/myapp/

目前,当我禁用重写时,mydomain.com/KenticoCMS/ 会正​​常运行。

但是,当我启用重写时,出现异常:

[ArgumentOutOfRangeException: startIndex cannot be larger than length of string. Parameter name: startIndex]
System.String.InternalSubStringWithChecks(Int32 startIndex, Int32 length, Boolean fAlwaysCopy) +10698899
CMS.URLRewritingEngine.URLRewriter.CheckPermissions(String siteName, PageInfo pi, Boolean excludeSystem) +235
CMSAppBase.CheckSecurity() +775
CMSAppBase.CMSAcquireRequestState(Object sender, EventArgs e) +606
CMS.CMSHelper.CMSApplicationModule.app_AcquireRequestState(Object sender, EventArgs e) +22
System.Web.SyncEventExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() +136
System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) +69

任何人对如何配置站点以使其可以在此设置中工作有任何建议吗?

编辑从根文件夹添加 web.config 并重写代码:

但是,我相信问题在于 Kentico 应用程序认为它位于子文件夹(它是)中,但没有通过 URL 获取该子文件夹。

<?xml version="1.0" encoding="UTF-8"?>
<configuration>
  <system.webServer>
    <modules runAllManagedModulesForAllRequests="true" />
    <rewrite>
      <rules>
        <rule name="Rewrite to Kentico" stopProcessing="true">
          <match url="(.*)" />
          <conditions>
            <add input="{HTTP_HOST}" pattern="^mydomain.com$" />
          </conditions>
          <action type="Rewrite" url="KenticoCMS/{R:1}" />
        </rule>
        <rule name="Rewrite to Myapp" stopProcessing="true">
          <match url="(.*)" />
          <conditions>
            <add input="{HTTP_HOST}" pattern="^myapp.mydomain.com$" />
          </conditions>
          <action type="Rewrite" url="myapp/{R:1}" />
        </rule>
      </rules>
    </rewrite>
  </system.webServer>
</configuration>
4

1 回答 1

1

所以这是一个很老的问题,但简短的回答是我认为你的假设是正确的,Kentico 不喜欢 URL 以这种方式被改变。

我之前做过类似的事情,如果其他人有这个问题应该会有所帮助,但它会重定向而不是 重写

我设置了以下规则:

<rule name="all subdomains" stopProcessing="true">
  <match url=".*" />
  <conditions>
    <add input="{HTTP_HOST}" pattern="(myapp)\.example\.com" />
  </conditions>
  <action type="Redirect" url="http://example.com/{C:1}{URL}" redirectType="Found" />
</rule>

显然,您可以更改重定向类型等,但关键是它是重定向而不是重写,所以这并不完全是您在原始问题中所指的。

但是,假设您拥有/拥有子域的有效许可证密钥,我不确定您为什么需要或想要通过重写来执行此操作,因为您可以为每个子域设置一个 IIS 站点。

于 2017-07-21T21:44:29.683 回答