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.
例如,我想让foobar.com显示FooBar.com
这几乎可以工作,但最终会强制重定向循环:
RewriteEngine On RewriteCond %{HTTP_HOST} ^(www.)?foobar.com\.com RewriteRule ^(.*)$ http://FooBar.com/$1 [L,R=301]
有没有办法做到这一点?我知道这很奇怪,但我只是好奇是否有可能在不陷入循环的情况下做到这一点。
您想要做的事情是不可能的,因为域名不能包含大写字母,而只能包含数字、小写字母和连字符。
因此,当您将您的小写域名重定向到您的大写域名时,您的浏览器将执行相反的操作:它将您的大写域名重定向到您的小写域名。所以,循环永远不会结束。