1

我在网上查看,但没有一个问题与我的情况相似。

我想重写http://sub.domain.com/thishttp://domain.com基本上屏蔽 url 例如,如果用户去http://domain.com他应该看到的内容http://sub.domain.com/this并且我想在没有重定向的情况下完成这个(所以 url 保持不变)

可能吗?谁能帮我这个?

4

1 回答 1

1

对的,这是可能的。你只需要把它.htaccess放在你的根文件夹中:

RewriteEngine On
RewriteBase /
RewriteRule ^/?$ http://sub.domain.com/this [L]
于 2013-05-27T12:24:58.037 回答