如何将域重定向到其他页面或目录?

2 web-hosting

请建议使用.htaccess以外的方法..

sea*_*boy 7

这真的是今天的作业 - 今天.

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>
Run Code Online (Sandbox Code Playgroud)

然后有反向代理等东西可以做你想要的.