问:因网站改版,网址不变,但部分收录的网址需要要301跳转到新的页面上,在管理里的301转向里只能设置把其他域名转向现在的网址上,不能指定具体的网址。
我用web.config来编写404规则和301转向,但不生效,404只有在管理里设了才有效,这个是不是限制了只能在管理里设置,301转向不能自己通过web.config设置吗?
答:您好,404请在管理面板中设置,301可以在web.config中编写,您可以将规则传上来我们看下,非常感谢您长期对我司的支持!
问:301可以单独设置啊,那帮忙看一下这个代码有没有问题
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<defaultDocument>
<files>
<add value="/index.asp" />
</files>
</defaultDocument>
<rewrite>
<rules>
<rule name="Redirect" stopProcessing="true">
<match url="http://www.hwalung.com/About.html" />
<conditions logicalGrouping="MatchAll" trackAllCaptures="false" />
<action type="Redirect" url="http://www.hwalung.com/about/about-7.html" />
</rule>
</rules>
</rewrite>
</system.webServer>
</configuration>
答:您好, 是您自己的规则有问题。
<rule name="Redirect">
<match url="^About.html$" ignoreCase="false" />
<action type="Redirect" redirectType="Permanent" url="http://www.hwalung.com/about/about-7.html" />
</rule>
已经帮您设置了,http://www.hwalung.com/About.html 请访问这个地址测试,非常感谢您长期对我司的支持!
问:做了一个301跳转就没办法上了 域名是:www.dangao518.com
答:您好,那是因为您自己添加错了,自己重定向到自己导致循环了。请您再仔细查看301设置说明,现在已经帮您取消了,非常感谢您长期对我司的支持!