Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我试图让我的 htaccess 将 .abc.local 附加到我的内部站点,而用户没有。因此,可以说http://kb我希望重定向 URL 或其他方法http://kb.abc.local。这是可能的还是我应该朝另一个方向看?
http://kb
http://kb.abc.local
这种域名突变由本地 DNS 解析器通过其“域搜索后缀”选项处理。这是由客户端操作系统处理的,它的行为不能被服务器修改。
RewriteCond %{HTTP_HOST} ^kb$ RewriteRule ^(.*)$ http://kb.abc.local$1 [R=301, L]
那应该这样做。