I have a problem with WordPress, I'm uploading the images to a specific directory and I need them to be viewed directly through the URL.
From the root of the portal there is a directory called server and inside it has a directory called images, then the access would be:
http://www.meusite.com/server/imagens/minhafoto.jpg
However, WordPress does not allow direct access to this directory, as shown above, it has a 404 error.
How do I release this rule in .htaccess
of WordPress?
Follow my .htaccess
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress