Werte Community,
ich kämpfe schon seit mehreren Stunden mit dem erstellen von Foren weil sich vermutlich die Permalinks weigern.
Das Forum läuft im Admin Panel usw. einwandfrei nur wenn ich auf ein Forum oder Unterforum klicke passiert nichts. Überzeugt euch selbst: https://forum.spacepc.de/
Ich hoffe jemand hat einen Tipp?
Zur Kinfiguration:
Debian 8.0
MySQL
Apache2
mod_rewrite
mod_ssl
wildcard Zertifikat
.htaccess aktiv!
Subdomain
vhost:
ich kämpfe schon seit mehreren Stunden mit dem erstellen von Foren weil sich vermutlich die Permalinks weigern.
Das Forum läuft im Admin Panel usw. einwandfrei nur wenn ich auf ein Forum oder Unterforum klicke passiert nichts. Überzeugt euch selbst: https://forum.spacepc.de/
Ich hoffe jemand hat einen Tipp?
Zur Kinfiguration:
Debian 8.0
MySQL
Apache2
mod_rewrite
mod_ssl
wildcard Zertifikat
.htaccess aktiv!
Subdomain
vhost:
Code:
<VirtualHost *:80>ServerAdmin webmaster@spacepc.de
DocumentRoot /var/www/spacepcf
ServerName forum.spacepc.de
DirectoryIndex index.php
ErrorLog /var/log/apache2/spacepcf-error.log
</VirtualHost>
<Location />
RewriteEngine on
RewriteCond %{HTTPS} off
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [R]
</Location>
<Directory "/var/www/spacepcf">
Require all granted
Options Indexes FollowSymLinks
AllowOverride All
Order allow,deny
Allow from all
</Directory>
<IfModule mod_ssl.c>
<VirtualHost *:443>
ServerAdmin webmaster@spacepc.de
DocumentRoot /var/www/spacepcf/
ServerName forum.spacepc.de
DirectoryIndex index.php
Header always set Strict-Transport-Security: 'max-age=31536000; preload'
ErrorLog /var/log/apache2/spacepcf-error.log
SSLEngine on
SSLProtocol All -SSLv2 -SSLv3
SSLHonorCipherOrder On
SSLCompression off
CustomLog /var/log/apache2/spacepcf-access.log combined
ServerSignature Off
SSLCertificateFile /etc/letsencrypt/live/stoecklmayer.net/fullchain.pem
SSLCertificateKeyFile /etc/letsencrypt/live/stoecklmayer.net/privkey.pem
Include /etc/letsencrypt/options-ssl-apache.conf
<Directory "/var/www/spacepcf/">
AllowOverride all
Require all granted
</Directory>
RewriteEngine On
#RewriteBase /
RewriteRule ^/$ /index.php [L]
RewriteCond %{DOCUMENT_ROOT}%{REQUEST_FILENAME} !-f
RewriteCond %{DOCUMENT_ROOT}%{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /index.php/$1 [L]
</VirtualHost>
</IfModule>