Redirect 在wordpress网站上使用web.config重定向

Redirect 在wordpress网站上使用web.config重定向,redirect,web-config,Redirect,Web Config,我对使用web.config重定向有疑问。这是godaddy.com上的word press网站。服务器IIS 7.0它是Windows服务器 我想从旧的html页面重定向到新的wordpress页面。 例如: 到 现在重新恋爱 <configuration> <system.webServer> <rewrite> <rules> <clear /&

我对使用web.config重定向有疑问。这是godaddy.com上的word press网站。服务器IIS 7.0它是Windows服务器

我想从旧的html页面重定向到新的wordpress页面。 例如:

现在重新恋爱

<configuration>
   <system.webServer>
        <rewrite>
            <rules>
                       <clear />
                        <rule name="Redirect to dakshadesign.com" stopProcessing="true">
                             <match url="^Ecommerce_Web_Design.html$" />
                             <action type="Redirect" url="http://www.dakshadesign.com/ecommerce-website-design-web-development-company-india" appendQueryString="false" />
                            </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>

             </rules>
         </rewrite>

        </system.webServer>

 </configuration>