如何将我的域重定向到不同的页面或目录?
请建议除使用 .htaccess 之外的其他方法。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
请建议除使用 .htaccess 之外的其他方法。
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(4)
今天确实是家庭作业到期日。
有 httpd.conf (apache)
http://httpd.apache.org/docs/1.3/configuring.html
或者,强制执行“错误 301 - 重定向”。
或者,您可以在网页中进行元刷新,重定向到新网页。
例如
http://www.the-domain-you-want-to-redirect-to.com">;
或者您可以使用 javascript 强制重定向。
然后还有像反向代理这样的东西可以做你想做的事。
It really is homework-due-day today.
Theres httpd.conf (apache)
http://httpd.apache.org/docs/1.3/configuring.html
Or, forcing an "Error 301 - redirect".
Or, you could put a meta-refresh in your webpage redirecting to the new webpage.
e.g.
<meta http-equiv="REFRESH" content="0;url=http://www.the-domain-you-want-to-redirect-to.com">
Or you could use javascript to force the redirect.
Then there are things like Reverse Proxy that could do what you wanted.
根据技术和/或您对网络服务器的访问,有多种选项。 除了上述之外,您还可以使用服务器端代码重定向,例如在 ASP.Net 中,
我确信有 PHP 和各种其他代码替代方案可以执行相同的操作。
Depending on the technology and/or your access to the web server there are various options. In addition to the above you could use a server side code redirect e.g. in ASP.Net
I'm sure there are PHP and various other code alternatives to perform the same action.
您可以使用index.html 和META Refresh 标记进行客户端重定向。
http://en.wikipedia.org/wiki/Meta_refresh
You can do a client side redirect using an index.html and a META Refresh tag.
http://en.wikipedia.org/wiki/Meta_refresh
与实现无关:
以下状态代码可用于 Web 服务器响应:
如果您无法访问像样的 Web 服务器,请尝试 Javascript
或上面的元标记方法。
奖励:另一个特定于实现的建议,使用 Hunchentoot:
Implementation-agnostic:
The following status codes can be used in a web server response:
If you don't have access to a decent web server, try the Javascript
or Meta-Tag methods above.
Bonus: another implementation-specific advice, using Hunchentoot: