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.
假设我有域 mydomain.com,我想做的是强制浏览器在 URL 栏中显示 MyDomain.com。我有以下htaccess:
# force all to MyDomain.com RewriteCond %{HTTP_HOST} !^www.MyDomain RewriteRule (.*) http://www.MyDomain.com/$1 [R=301,L]
但它不起作用。是否有任何技巧/黑客可以使浏览器显示不是全部小写的 URL?或者这是不可能的?
不,域和子域总是小写的。DNS 系统始终不区分大小写。
https://www.rfc-editor.org/rfc/rfc4343