我在网上查看,但没有一个问题的条件与我的相似。
我想将http://sub.domain.com/this
重写为http://domain.com
,基本上屏蔽了网址
例如,如果用户转到http://domain.com
,他应该会看到http://sub.domain.com/this
的内容,并且我想在没有重定向的情况下完成此操作(因此网址保持不变)
有可能吗?任何人都可以帮我这个吗?
答案 0 :(得分:1)
是的,有可能。您只需将此.htaccess
放在根文件夹中:
RewriteEngine On
RewriteBase /
RewriteRule ^/?$ http://sub.domain.com/this [L]