Site has 302 redirect that needs removed



I have a site that has a 302 redirect in place going form http://ift.tt/1oFADO7 to / . As far as I know, this is coming from the web.config file. It is a wordpress site hosted on a windows(plesk) server.


The code in the web.config file looks like:



<?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></rules>
</rewrite>
</system.webServer>
</configuration>


Anyone know how to remove this redirect?


No comments:

Post a Comment