我们目前有一个在子域 http://blog.domain.com 下运行的 wordpress 博客。该站点当前也通过反向代理运行,作为指向原始子域站点的 http://www.domain.com/blog。
目前这两个站点都运行正常,但我们遇到的问题是我们希望子域站点重定向到反向代理站点而不是呈现。我们只希望站点呈现为 http://www.domain.com/blog。我一直在尝试在服务器 2008 机器上使用 IIS 7 中的 URL 重写。
我认为我遇到的问题是正则表达式。我尝试使用 -- ^(blog.)* -- 当我在 IIS 中测试它时,它返回它匹配 (blog.domainname.com) 但是当我在浏览器中打开它时,该站点本身不会重定向。我不确定我错过了什么。在此先感谢您的帮助。
<rewrite>
<rules>
<rule name="Main Rule" stopProcessing="true">
<match url=".*" />
<conditions logicalGrouping="MatchAll">
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
</conditions>
<action type="Rewrite" url="index.php" /></rule>
<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>
<rule name="redirect to /blog" enabled="false" patternSyntax="ECMAScript" stopProcessing="true">
<match url="^(blog.)*" />
<action type="Redirect" url="http:// www.domainname.com/blog" />
<conditions logicalGrouping="MatchAny">
<add input="{HTTP_HOST}" pattern="(.*)" />
</conditions>
</rule>
</rules>
</rewrite>