我的网站是关于wordpress的,我想将我的网站从 icap.org.pk 重定向到 www.icap.org.pk ,但当我在wp中更改时.config文件显示错误“页面没有正确重定向”。
这是我的代码,请建议我如何做到这一点:
`<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name="Redirect to WWW" stopProcessing="true">
<match url=".*" />
<conditions>
<add input="{HTTP_HOST}" pattern="^icap.org.pk$" />
</conditions>
<action type="Redirect" url="http://www.icap.org.pk/{R:0}" redirectType="Permanent" />
</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>
`
答案 0 :(得分:1)
According to the above link你的web.config很好,问题最有可能是你的wordpress选项的数据库表...解决方案:登录到数据库,并确保设置网址为www而不是没有www。