<?xml version="1.0" encoding="UTF-8"?>

       <configuration>

          <system.webServer>

             <rewrite>

                <rules>

                  <rule name="301Redirect" stopProcessing="true">

                    <match url="(.*)" />

                    <conditions logicalGrouping="MatchAny">

<add input="{HTTP_HOST}" pattern="^xxx.com$" />

                    </conditions>

                    <action type="Redirect" url="http://www.xxx.com/{R:0}" redirectType="Permanent" />

                </rule>

            </rules>

         </rewrite>

       </system.webServer>

  </configuration>

实现的效果是xxx.com访问时跳转到www.xxx.com

相关文章:

  • 2021-11-19
  • 2021-08-01
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-12-20
  • 2022-02-15
  • 2021-09-10
猜你喜欢
  • 2022-12-23
  • 2021-05-17
  • 2022-12-23
  • 2021-10-17
  • 2021-06-22
  • 2021-12-15
  • 2022-12-23
相关资源
相似解决方案