Issue
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?
Solution
The documentation states that it is not possible:
... Lines that begin with the hash character "#" are considered comments, and are ignored. Comments may not be included on the same line as a configuration directive ...
Answered By - Juan Mellado Answer Checked By - Marilyn (PHPFixing Volunteer)
0 Comments:
Post a Comment
Note: Only a member of this blog may post a comment.