将 url 重定向到单独的托管,同时保留文件结构

发布于 2024-12-08 14:28:21 字数 266 浏览 1 评论 0原文

我拥有theone.com 和twosies.com。我的主机与 Twosies 捆绑在一起。

我的网站位于twosies.com/theone/

并通过twosies.com/theone/home.php 访问该网站

我想通过theone.com/home.php 访问该网站

我该如何操作? 我以前使用过 htaccess,但只是为了简化页面查询和删除文件扩展名。

问候

-泰勒

*修正了一个拼写错误

I own theone.com and twosies.com. I have my hosting bundled with twosies.

I have my site located in twosies.com/theone/

and reach it by twosies.com/theone/home.php

I would like to reach the site through theone.com/home.php

How do I do this?
I've used htaccess before but only to simplify page queries and remove file extensions.

regards

-taylor

*fixed a typo

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

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

发布评论

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

评论(2

灼痛 2024-12-15 14:28:21

您不需要 mod_rewrite 也不需要 php ,一个简单的 重定向 的作用是:

Redirect /service http://foo2.example.com/service

检查链接以获取完整的详细信息。

You don't need mod_rewrite nor php for it, a simple Redirect does this:

Redirect /service http://foo2.example.com/service

Check the link for full details.

笨笨の傻瓜 2024-12-15 14:28:21
<?php
function Redirect($path){
          ?>
          <script language="javascript" type="text/javascript">
                window.location = "<?php echo $path; ?>";
          </script>
          <?php
          }
?>
<?php
function Redirect($path){
          ?>
          <script language="javascript" type="text/javascript">
                window.location = "<?php echo $path; ?>";
          </script>
          <?php
          }
?>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文