URL转向可以通过配置服务器或网站的重定向规则来实现。以下是几种常见的方法:
例如,将所有访问http://example.com/old-page.html的请求重定向到http://example.com/new-page.html:
RewriteEngine On
RewriteRule ^old-page\.html$ /new-page.html [R=301,L]
Apache:
Redirect 301 /old-page.html http://example.com/new-page.html
Nginx:
location /old-page.html {
return 301 http://example.com/new-page.html;
}
header("HTTP/1.1 301 Moved Permanently");
header("Location: http://example.com/new-page.html");
exit();
需要注意的是,重定向应该使用301状态码,表示永久重定向,以便搜索引擎可以更新索引。同时,应该避免出现重定向链,即多个页面之间相互重定向,否则可能会影响网站的性能和用户体验。