• Hi, Pleskians! We are running a UX testing of our upcoming product intended for server management and monitoring.
    We would like to invite you to have a call with us and have some fun checking our prototype. The agenda is pretty simple - we bring new design and some scenarios that you need to walk through and succeed. We will be watching and taking insights for further development of the design.
    If you would like to participate, please use this link to book a meeting. We will sent the link to the clickable prototype at the meeting.
  • (Plesk for Windows):
    MySQL Connector/ODBC 3.51, 5.1, and 5.3 are no longer shipped with Plesk because they have reached end of life. MariaDB Connector/ODBC 64-bit 3.2.4 is now used instead.
  • The Horde webmail has been deprecated. Its complete removal is scheduled for April 2025. For details and recommended actions, see the Feature and Deprecation Plan.

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