ht访问问题

发布于 2024-10-21 13:58:32 字数 302 浏览 2 评论 0原文

目前我有两个域指向同一个网络空间(因此domain1.com/index.html和domain2.com/index.html给出相同的页面)。我正在尝试配置它,以便如果我转到domain1.com/index.html或domain1.com/test/...,我会被转发到domain1.com/something/index.html或domain1.com/something/ test/...

当我访问domain2.com/index.html 时,它不应该被转发,所以我应该只看到domain2.com/index.html

有什么建议吗?

at the moment I have 2 domains pointing at the same webspace (so domain1.com/index.html and domain2.com/index.html give the same page). I'm trying to configuer it so that if I go to domain1.com/index.html or domain1.com/test/... I get forwarded to domain1.com/something/index.html or domain1.com/something/test/...

When I go to domain2.com/index.html it shouldn't get forwarded so I should just see domain2.com/index.html

Any suggestions how I can do this?

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

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

发布评论

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

评论(1

平生欢 2024-10-28 13:58:32

这是未经测试的:

RewriteEngine on
RewriteCond %{HTTP_HOST} ^domain1.com$
RewriteRule ^(.*)$ /something/$1

This is Untested:

RewriteEngine on
RewriteCond %{HTTP_HOST} ^domain1.com$
RewriteRule ^(.*)$ /something/$1
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文