我正在寻找我网站上的脚本,我希望每个链接都转发到我的域名。 这很难解释,但必须看起来像这样:域名com / text(转发:) ==>域名com 和其他所有"文本"每个随机转发到此域 domain .com / random =>域名com domain com / other =>域com
有人可以寄给我这个剧本吗?
答案 0 :(得分:0)
我想你正在寻找像Redirect 301这样的东西,你可以在这里看到例子http://www.rackspace.com/knowledge_center/frequently-asked-question/how-can-i-do-a-301-redirect
答案 1 :(得分:0)
301 url redirection is your solution
.htaccess
Redirect 301 /oldfile.htm /newfile.htm
&安培;
php
<?
Header( "HTTP/1.1 301 Moved Permanently" );
Header( "Location: http://www.new-url.com" );
?>