jeudi 2 mai 2019

Is there anyway I can change the website from ging from .co.uk to .com in the web.config file

I have put in this http redirectin the web config file but I keep getting a redirection loop. The website is a wordpress website and is being hosted on IIS7.5, it may also be worth metioning that I have a plug in called really simple ssl installed to handle the https redirects.

I will attach my web.config file below

<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<staticContent>
<mimeMap fileExtension=".woff" mimeType="application/x-font-woff" />
</staticContent>
<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: http://www.google.com" 
 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>
<httpRedirect enabled="true" destination="http://www.google.com" httpResponseStatus="Permanent" />
    <security>
        <requestFiltering>
            <denyUrlSequences>
                <add sequence="xmlrpc.php" />
            </denyUrlSequences>
            <requestLimits maxAllowedContentLength="50000000" />
        </requestFiltering>
    </security>
  <handlers>
    </handlers>
  </system.webServer>
 </configuration>




Aucun commentaire:

Enregistrer un commentaire