• Hello,

    I am trying to change my permalinks and have to do it through we.config. What code do you have to put in and where should it go or what should it replace.

    This is what the code looks like now.

    <configuration>
      <system.webServer>
        <rewrite>
          <rules>
            <rule name="Redirect to WWW" stopProcessing="true">
              <match url=".*" />
              <conditions>
                <add input="{HTTP_HOST}" pattern="^cinemadesigngroup.com$" />
              </conditions>
              <action type="Redirect" url="http://www.cinemadesigngroup.com/{R:0}" redirectType="Permanent" />
            </rule>
          </rules>
        </rewrite>
      </system.webServer>
    </configuration>

The topic ‘Permalinks’ is closed to new replies.