I'm trying to get pvlng running on Windows. I've created a vhost in apache:
Listen 81
<VirtualHost *:81>
ServerName localhost
DocumentRoot "c:/htdocs/PVlng"
<Directory "c:/htdocs/PVlng">
DirectoryIndex index.html index.php
Options Indexes FollowSymLinks
AllowOverride All
Require all granted
</Directory>
LogLevel debug
ErrorLog "logs/pvlng.log"
CustomLog "logs/pvlng-access.log" common
</VirtualHost>
Any access to :81 results in error 500, logfiles remain empty of any error messages.
Source of the problem seem to be the rewrite rules in /.htaccess. As soon as those are commented out directory index is loaded.
Any idea if/which problem that might be?
I'm trying to get pvlng running on Windows. I've created a vhost in apache:
Any access to :81 results in error 500, logfiles remain empty of any error messages.
Source of the problem seem to be the rewrite rules in
/.htaccess. As soon as those are commented out directory index is loaded.Any idea if/which problem that might be?