Thread mod_perl + Fehler 403 (10 answers)
Opened by daddelkopp at 2009-08-11 15:21

daddelkopp
 2009-08-11 18:13
#124114 #124114
User since
2009-08-11
6 Artikel
BenutzerIn
[default_avatar]
Hi, ersteinmal vielen Dank für eure schnelle Rückmeldung.

Hier die Apachemeldung:

/$ /etc/init.d/httpd configtest
-bash: line 41: /etc/init.d/httpd: No such file or directory

Das Script:

Skript: -test.pl-

#!/usr/bin/perl

print "Content-Type: text/html\n\n";
print "Test Test Test";
exit;

.htaccess:

Options +SymLinksIfOwnerMatch
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteBase /test
RewriteRule ^test\.html$ test.pl
</IfModule>

Liegt im Root /test

Error logs:

[Tue Aug 11 18:01:24 2009] [error] [client 91.15.139.215] Options FollowSymLinks or SymLinksIfOwnerMatch is off which implies that RewriteRule directive is forbidden: /srv/www/vhosts/wohnwagen-online.net/httpdocs/test/test.pl


*** FollowSymLinks or SymLinksIfOwnerMatch ***

Das ist wie 403 schon sagt, ein Zugriffsproblem.
Aber wie löse ich das ?

View full thread mod_perl + Fehler 403