这真的是今天的作业 - 今天.
Theres httpd.conf(apache) http://httpd.apache.org/docs/1.3/configuring.html
或者,强制"错误301 - 重定向".
或者,您可以在网页中将元刷新重定向到新网页.例如
<meta http-equiv ="REFRESH"content ="0; url = http://www.the-domain-you-want-to-redirect-to.com ">
或者您可以使用javascript强制重定向.
<script type="text/javascript">
window.location = "http://www.google.com/"
</script>
然后有反向代理等东西可以做你想要的.