Bod
New Pleskian
- Server operating system version
- Debian 12
- Plesk version and microupdate number
- Version 18.0.59 Update #2
I have a .htaccess file that uses the
This entry is in the
The error log shows
I have restarted Apache after making the changes to the conf file.
Any suggestions what else I should be looking at?
I have limited knowledge of Apache so any feedback on the above directive would be appreciated as well as some help troubleshooting the .htaccess file
RewriteEngine
but as soon as I set this to on, I get a 403 error.This entry is in the
/etc/apache2/apache2.conf
file:
Code:
<Directory /var/www/>
<Files ~ (\.pl$)>
SetHandler cgi-script
Options ExecCGI
allow from all
</Files>
AddHandler cgi-script .pl
Options ExecCGI Indexes FollowSymLinks SymLinksIfOwnerMatch
AllowOverride All
Require all granted
</Directory>
The error log shows
Options FollowSymLinks and SymLinksIfOwnerMatch are both off, so the RewriteRule directive is also forbidden due to its similar ability to circumvent directory restrictions
which doesn't make sense to me. In the conf file we are setting FollowSymLinks
and SymLinksIfOwnerMatch
so what are they being reported as being off?I have restarted Apache after making the changes to the conf file.
Any suggestions what else I should be looking at?
I have limited knowledge of Apache so any feedback on the above directive would be appreciated as well as some help troubleshooting the .htaccess file