Hi,
I've tweaked my Wordpress installations to protect them from hackRs.
The /wp-content folder contains a .htaccess that denies certain type of files and behaviour.
In order to get some plugins to work, I need to allow them to do stuff inside my /wp-content. Eventually, I've ended up with quite a few exceptions and I'm curios if I can shorten the instructions somehow.
So, if I have to allow two particular files, do I have to write:
<Files "whateverplugin.php">
Allow from all
</Files>
<Files "anothergreatplugin.php">
Allow from all
</Files>
Or can I do:
<Files "whateverplugin.php" "anothergreatplugin.php">
Allow from all
</Files>
I like to keep my code as short as possible... cannot help it :)