I'm using vanilla forums which already has these rewrite conditions and rules in .htaccess:
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php\?p=$1 [QSA,L]
What I would like now is to add some rewrite rules that ask for authentication (Require valid-user) only when I am on the page /vanilla/index.php?p=/categories/general, ie just the query string "p=/categories/general"
Thank you for your help!