Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何将所有外部链接(即从 Google 指向我的网站的点击)从 product.php?id=1&cat=2&show=3 重定向到 new_product.php?id=1&cat=2&show=3 ?
原因是,product.php 仅在没有页眉/页脚/菜单等的颜色框窗口中用于已经在网站上的用户。如果有人从 Google 结果直接链接到此页面,他们将获得不完整的布局,而 new_product.php 具有完整的布局。
编辑:
你尝试过这样的事情吗?
RewriteCond %{HTTP_REFERER} !^$ RewriteCond %{HTTP_REFERER} !^http://(www\.)?yourdomain.com/.*$ [NC]
现在规则如下:
RewriteRule ^product.php? http://yourdomain.com/new_product.php? [L,QSA,R=301]