.htaccess 设置默认 URL 解析的方法?

发布于 2024-12-09 11:29:00 字数 272 浏览 2 评论 0原文

我们有两个站点,并且我们刚刚制作了一个内部开发服务器,我们希望两个站点都位于该服务器上。我想要完成的是在每个站点文件夹中都有一个 .htaccess ,该文件夹前置站点的开发 URL。例如,如果他们只有一个标头(位置:/folder/whatever.php),则文件实际上应该转到thesite/folder/whatever.php

目前发生的情况是(例如)他们将转到 192.168.xx/folder/whatever.php

We have two sites, and we've just now made an in-house development server that we want to have both sites on. What I want to accomplish is to have an .htaccess in each of the site folders that prepends the development URL of the site. For example, where they simply have a header(location: /folder/whatever.php), the files should actually go to thesite/folder/whatever.php.

Currently what happens is (for example) they'll go to 192.168.x.x/folder/whatever.php

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

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

发布评论

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

评论(1

隔岸观火 2024-12-16 11:29:00

如果我理解正确并且您想要的是将 192.168.xx/folder/whatever.php 重定向到 thesite/folder/whatever.php,您可以使用以下命令:

RewriteCond %{HTTP_HOST} !^thesite.com$
RewriteRule ^(.*)$ http://thesite.com/$1 [R=301,L]

If I understood correctly and what you want is to redirect 192.168.x.x/folder/whatever.php to thesite/folder/whatever.php, you could use this:

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