如何将我的域重定向到不同的页面或目录?

发布于 2024-07-13 21:23:50 字数 32 浏览 7 评论 0 原文

请建议除使用 .htaccess 之外的其他方法。

Please suggest a method other than use of .htaccess..

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

沉睡月亮 2024-07-20 21:23:50

今天确实是家庭作业到期日。

有 httpd.conf (apache)
http://httpd.apache.org/docs/1.3/configuring.html

或者,强制执行“错误 301 - 重定向”。

或者,您可以在网页中进行元刷新,重定向到新网页。
例如
http://www.the-domain-you-want-to-redirect-to.com">;

或者您可以使用 javascript 强制重定向。

<script type="text/javascript">
window.location = "http://www.google.com/"
</script>

然后还有像反向代理这样的东西可以做你想做的事。

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.

<script type="text/javascript">
window.location = "http://www.google.com/"
</script>

Then there are things like Reverse Proxy that could do what you wanted.

栀梦 2024-07-20 21:23:50

根据技术和/或您对网络服务器的访问,有多种选项。 除了上述之外,您还可以使用服务器端代码重定向,例如在 ASP.Net 中,

Response.Redirect("http://www.google.co.uk")

我确信有 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

Response.Redirect("http://www.google.co.uk")

I'm sure there are PHP and various other code alternatives to perform the same action.

十二 2024-07-20 21:23:50

您可以使用index.html 和META Refresh 标记进行客户端重定向。

    <html>
        <head>
            <meta http-equiv="refresh" content="0;url=http://www.mysite.com/MyDir/MyPage.html" />
        </head>
    </html>

http://en.wikipedia.org/wiki/Meta_refresh

You can do a client side redirect using an index.html and a META Refresh tag.

    <html>
        <head>
            <meta http-equiv="refresh" content="0;url=http://www.mysite.com/MyDir/MyPage.html" />
        </head>
    </html>

http://en.wikipedia.org/wiki/Meta_refresh

北城挽邺 2024-07-20 21:23:50

与实现无关:

以下状态代码可用于 Web 服务器响应:

如果您无法访问像样的 Web 服务器,请尝试 Javascript
或上面的元标记方法。

奖励:另一个特定于实现的建议,使用 Hunchentoot

(redirect "http://otherhost/otherpath")

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:

(redirect "http://otherhost/otherpath")
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文