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.
如何注释掉 vhosts 文件中的一段文本?
我是否必须在每一行前面加上井号/井号 (#)?
是的,您必须将磅/哈希符号 ( #) 放在您想要注释掉的所有行的前面。没有“块评论”标签/符号。
#
一些文本编辑器具有列模式编辑,这意味着您可以选择多行并同时编辑所有行中的文本。您可以使用此功能将#符号插入所选行的前面。
这不是解决方案,而是一种解决方法。您可以将要注释的代码放在IfDefine块中,因此除非定义了哑变量,否则它将被忽略:
<IfDefine IgnoreBlockComment> ... </IfDefine>
来源:https ://serverfault.com/a/414428