URL 屏蔽!使用 Htaccess
我在这里很新,所以我有一个关于屏蔽的问题,并尝试使用 .htaccess 的其他解决方案,但没有运气,这就是我在这里的原因。谢谢。
好的,就是这样:
- 我想要我的 http://www.domain.com/article-tip显示在 http://www.subdomain.domain.com
- 表示页面内容来自:domain .com/article-tip
- 但是地址上面的url是:subdomain.domain.com
- 我该如何使用 .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:
- I want my http://www.domain.com/article-tip to show in http://www.subdomain.domain.com
- It means the page content is from: domain.com/article-tip
- But the url above the address is: subdomain.domain.com
- 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用
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 besubdomain.domain.com/article-tip
but in php URL will bewww.domain.com/article-tip
.I don't think you can send dynamic output to browser like what you want with
.htaccess
这应该适用于您需要使article-tip 中的所有文件指向子域的情况。子域也应该指向子目录。这是针对子目录的.htaccess。
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.