URL 屏蔽!使用 Htaccess

发布于 2024-12-10 10:16:33 字数 495 浏览 0 评论 0原文

我在这里很新,所以我有一个关于屏蔽的问题,并尝试使用 .htaccess 的其他解决方案,但没有运气,这就是我在这里的原因。谢谢。

好的,就是这样:

  1. 我想要我的 http://www.domain.com/article-tip显示在 http://www.subdomain.domain.com
  2. 表示页面内容来自:domain .com/article-tip
  3. 但是地址上面的url是:subdomain.domain.com
  4. 我该如何使用 .htaccess 来做到这一点?

这意味着我也尝试了 iframe、frames 和 php,但我想要 .htaccess

提前致谢。!

I'm quite new here so i have a problem about masking and tried other solutions using .htaccess as well but no luck, that's why im here. Thanks.

Ok here's it is:

  1. I want my http://www.domain.com/article-tip to show in http://www.subdomain.domain.com
  2. It means the page content is from: domain.com/article-tip
  3. But the url above the address is: subdomain.domain.com
  4. How would i do that using .htaccess?

It means i also tried the iframe and frames and php, but i want the .htaccess

Thanks in advance.!

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

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

发布评论

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

评论(2

寻梦旅人 2024-12-17 10:16:33

您可以使用 mod_rewrite 在这种情况下,URL 将是 subdomain.domain.com/article-tip 但在 php 中 URL 将是 www.domain.com/article -提示
我认为您不能像 .htaccess 那样将动态输出发送到浏览器

you can use mod_rewrite in that case the URL will be subdomain.domain.com/article-tip but in php URL will be www.domain.com/article-tip.
I don't think you can send dynamic output to browser like what you want with .htaccess

久光 2024-12-17 10:16:33

这应该适用于您需要使article-tip 中的所有文件指向子域的情况。子域也应该指向子目录。这是针对子目录的.htaccess。

RewriteRule ^article-tip(.*)$ http://subdomain.domain.com [R=301,L] 
RewriteRule ^article-tip/(.*)$ http://subdomain.domain.com/$1 [R=301,L]

This should work for what you need to get all files in article-tip to point to the subdomain. The subdomain should also point to the subdirectory. This is for the .htaccess of the subdirectory.

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