我更改了网站的层次结构。我们有2页如下:
http://www.example.com/cms/products-search.php
移至:/new/pro-search.php
和
http://www.example.com/cms/data-products-details.php?pro=1111
移至/new/products-details.php?pro=1111
我如何在htaccess中处理这个并且不影响SEO?
答案 0 :(得分:1)
您应该使用
重定向到新的网页位置301 "Moved Permanently" redirect
必须在HTACCESS文件中以编程方式设置,例如:
Redirect 301 /something https://www.mynewapp.com/something/a?someextra
301" Perma Redirect"告诉搜索引擎您的页面已在新位置移动,并且任何网页排名都应转移到新网址。