I have as an example the following RewriteRule ^(Home)?/?$ page/php/Home.php [NC,L]
I know that NC
is Non-Case(Não diferencia maiúsculas e minusculas)
. L
means that if a RewriteRule
is true it stops checking.
But I saw several examples using QSA as well and I did not find an explanation that would clarify to me what the QSA means and what its use. So I ask, What does this QSA mean? What is its use? Are there other "operators" (I do not know how they are called) besides these? if so, what are its uses?