In an apache conf file, if a line is start with #
, that line is counted as comment. For example,
#This is a comment line
#And then the following is some real settings:
AllowOverride None
However, this is not allowed.
#And then the following is some real settings:
AllowOverride None #A comment that starts in the middle of line
Is it possible to starts a comment in the middle of the line? And if yes, how?