记一次301跳转--不跳转内页问题

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了记一次301跳转--不跳转内页问题相关的知识,希望对你有一定的参考价值。

客户设置了301跳转,可只有首页跳转成功,内页不跳转,后来核查,客户有设置伪静态规则,需要把伪静态规则放在301跳转规则后面即可正常实现内页跳转功能.


<?xml version="1.0" encoding="UTF-8"?>

<configuration>

    <location path="" overrideMode="Deny">

    </location>

    <location path="" overrideMode="Allow">

        <appSettings />

    </location>

    <system.webServer>

        <rewrite>  

              <rules> 

                   <rule name="301Redirect" stopProcessing="true">

                    <match url="(.*)" />

                    <conditions logicalGrouping="MatchAny">

                        <add input="{HTTP_HOST}" pattern="^haidebeibei\.com$" />

                    </conditions>

                    <action type="Redirect" url="http://www.haidebeibei.com/{R:0}" redirectType="Permanent" />

                </rule>

<rule name="OrgPage" stopProcessing="true"> 

<match url="^(.*)$" />

<conditions logicalGrouping="MatchAll"> 

<add input="{HTTP_HOST}" pattern="^(.*)$" /> 

<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" /> 

<add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" /> 

</conditions>

<action type="Rewrite" url="index.php/{R:1}" /> 

</rule>

           

</rules>

</rewrite>

    </system.webServer>

</configuration>


以上是关于记一次301跳转--不跳转内页问题的主要内容,如果未能解决你的问题,请参考以下文章

记一次从公众号文章跳转小程序页面异常的问题

nginx 301跳转,怎么把refere带过去

小程序定制开发WEB服务器-设置网站301全站跳转(域名301重定向)

记一次新生赛BJDCTF(WP)

vue循环中添加路由跳转点击第一次不生效

记一次网站被黑经历