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.
这条线是做什么的?
RewriteRule .* http://www.test.de [L,R=301]
它使用永久重定向代码 (301) 将所有请求 ( .*) 重定向到http://www.test.de,之后不再执行更多规则(L 表示最后一个)。
.*