如何隐藏来自用户代理之一的重定向
How to hide redirect from the one of the User-Agents
我有一个 URL,我想为其配置以下配置:
- Googlebot 应重定向至页面 x、
- 其他 User-Agent 应该被重定向到页面 y.
如何隐藏来自 Googlebot 的 301 重定向并将此 url 重定向到其他地址?我应该编辑 .htaccess 吗?
您可能可以使用重写条件和规则来做到这一点:
RewriteCond %{HTTP_USER_AGENT} Googlebot
RewriteRule ^mypage /redirect [L,R=301]
所以这会将包含单词 Googlebot
的用户代理的请求从 http://example.com/mypage
重定向到 http://example.com/redirect
我有一个 URL,我想为其配置以下配置:
- Googlebot 应重定向至页面 x、
- 其他 User-Agent 应该被重定向到页面 y.
如何隐藏来自 Googlebot 的 301 重定向并将此 url 重定向到其他地址?我应该编辑 .htaccess 吗?
您可能可以使用重写条件和规则来做到这一点:
RewriteCond %{HTTP_USER_AGENT} Googlebot
RewriteRule ^mypage /redirect [L,R=301]
所以这会将包含单词 Googlebot
的用户代理的请求从 http://example.com/mypage
重定向到 http://example.com/redirect