What is the difference? I am assuming if there is no + or - symbol then the default is that the option is activated by apache. Adding + is explicit and is only done when there is a mix of - . Am I right so far?
For example #1 and #2 below mean the same.
1)
<Directory /home/user/public_html>
Options Indexes FollowSymLinks
</Directory>
2)
<Directory /home/user/public_html>
Options +Indexes +FollowSymLinks
</Directory>
#3 becomes invalid, #4 is the correct one
3)
<Directory /home/user/public_html>
Options -Indexes FollowSymLinks
</Directory>
4)
<Directory /home/user/public_html>
Options -Indexes +FollowSymLinks
</Directory>
TIA!
p.s. I tried to search but I can't explain how to say +/- to Google. It gave me unrelated results.