I have AAM 6.5.4 and AAM Protected Media Files 1.1.6 installed and activated.
Site works fine with the plugins activated.
I wrote new lines into the .htaccess file taken from https://aamplugin.com/article/how-to-manage-access-to-the-wordpress-media-library, restarted Database, Apache and cleared cache, all AAM settings reset.
The website then has odd rendering issues - spacers missing, backgrounds missing.
I have modified the suggested .htaccess to limit aam rewrites to a .jpg-only rewrite rule, and this has fixed the problem for now, but limits what I can do:
<IfModule mod_rewrite.c>
<FilesMatch '.jpg'>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} -f
RewriteCond %{REQUEST_URI} wp-content/uploads/(.*)$
RewriteRule . /index.php?aam-media=1 [L]
</FilesMatch>
</IfModule>
Am I correct in assuming this means I will be able to protect .jpg files with full aam functionality (all I really care about)?
Any ideas about why I would be having issues with a default install and no permissions on any files yet?
Rod