• Introducing WebPros Cloud - a fully managed infrastructure platform purpose-built to simplify the deployment of WebPros products !  WebPros Cloud enables you to easily deliver WebPros solutions — without the complexity of managing the infrastructure.
    Join the pilot program today!
  • Support for BIND DNS has been removed from Plesk for Windows due to security and maintenance risks.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS.

Resolved AH00037: Symbolic link not allowed or link target not accessible

zihniates

Basic Pleskian
Hello,

I created a Laravel project, for this I installed redis and rabbitmq on docker, I set the path settings, the site is currently running, but I can't access the images, I get 403 error.

I found the solution: https://support.plesk.com/hc/en-us/...ink-not-allowed-or-link-target-not-accessible and I solved the problem as shown in the address at the moment, and it started to displaying images.

But at the now images cannot be displayed again and it gives 403 error.


I restarted with systemctl restart apache2 but that didn't help either.
I restarted VPS but that didn't help either..

Can you help me about this issue?

.htaccess

<IfModule mod_rewrite.c>
<IfModule mod_negotiation.c>
</IfModule>

RewriteEngine On

Options +FollowSymlinks
Options -SymLinksIfOwnerMatch

# Handle Authorization Header
RewriteCond %{HTTP:Authorization} .
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]

# Redirect Trailing Slashes If Not A Folder...
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} (.+)/$
RewriteRule ^ %1 [L,R=301]

# Send Requests To Front Controller...
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [L]
</IfModule>
 
Back
Top