.htaccess r=301 vs r=302

前端 未结 1 1331
耶瑟儿~
耶瑟儿~ 2021-02-02 09:59

I am creating rules in my .htaccess for mobile, or bad pages etc...

I am using these rules:

rewriterules badpage /goodpage.html [r=302]

rewriterules iph         


        
1条回答
  •  盖世英雄少女心
    2021-02-02 10:23

    When permanently moving a web site, or a web page, best practice is to use a 301 redirect. 302s in this situation seem incorrect. By saying "temporary move" a 302 tells search engines to keep the old domain or page indexed, but it would be desireable for them to index the new location. People use 302 redirects in an effort to circumvent the Google aging delay. This workaround might have worked at some point, but it is not a current best practice.

    Ref: 301 Vs 302 Redirects

    0 讨论(0)
提交回复
热议问题