为什么我的IIS 7重写规则不起作用?

时间:2011-06-13 09:43:48

标签: php wordpress iis iis-7

我已将Linux下的Wordpress Mu博客迁移到IIS 7下的WP 3,因此我需要将http://mydomain.com/blog/blahblah/重定向到http://mydomain.com/blahblah/

我添加到wordpress web.config

        <rule name="rewrite /blog/">
            <match url="^/blog/([_0-9a-z-]+)/" />
            <conditions>                
            </conditions>
            <action type="Rewrite" url="/{R:1}/" />
        </rule>

以便web.config现在包含:

<?xml version="1.0" encoding="UTF-8"?>
<configuration>
  <system.webServer>
    <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>
        <rule name="rewrite /blog/">
            <match url="^/blog/([_0-9a-z-]+)/" />
            <conditions>                
            </conditions>
            <action type="Rewrite" url="/{R:1}/" />
        </rule>
      </rules>
    </rewrite>
  </system.webServer>
</configuration>

Wordpress继续工作,但/ blog /未重定向。为什么?

1 个答案:

答案 0 :(得分:3)

1)最好将此规则移到通配符规则

之上

2)你有前导斜杠^/blog/... - 你不需要它:^blog/...

3)因为没有使用任何条件,我也删除了<conditions></conditions>

<rule name="rewrite /blog/">
    <match url="^blog/([_0-9a-zA-Z\-]+)/$"/>
    <action type="Rewrite" url="/{R:1}/"/>
</rule>

以上是重写规则 - 您在浏览器中看到相同的网址但在其后面执行的方式不同。

如果您想要重定向,请使用以下内容:

<rule name="rewrite /blog/">
    <match url="^blog/([_0-9a-zA-Z\-]+)/$"/>
    <action type="Redirect" url="/{R:1}/" redirectType="Permanent" />
</rule>