使用PHP的SEO URL重定向

时间:2016-09-10 07:10:57

标签: php redirect seo

我想知道什么是最好的SEO重定向,301或302?

我想将一些网址重定向到PayPal购买页面,什么是最好的301或302?

例如:

I want to redirect this link:
    http://example.com/?product_id=123
To PayPal purchase page:
https://www.paypal.com/xxxxxxxxetc...

301或302?

感谢。

2 个答案:

答案 0 :(得分:1)

规则已经改变(至少对谷歌而言)

它曾经是301重定向,但是Google的John Mueller announced在2016年2月再也无关紧要了:

  

我是否会从重定向中丢失“链接汁”?

     

不,对于从HTTP到HTTPS的301或302重定向,没有PageRank丢失。

那我该怎么用?

由于SEO无关紧要,您应该使用广告中的HTTP代码:

  • 301永久重定向

  • 302暂时重定向

有关详细信息,请查看redirection rules for seo上的moz.com,您也可以在此处找到此图片

enter image description here

答案 1 :(得分:0)

 app.UseCors(builder => builder.WithOrigins("example.com"));

试试这个