GIF94;
| Path : /etc/apache2/sites-enabled/ |
| Current File : //etc/apache2/sites-enabled/licht-werk-studios.de.conf |
<VirtualHost *:80>
ServerName 7.licht-werk-studios.de
ServerAlias www.6.licht-werk-studios.de
ServerAdmin silass@web.de
DocumentRoot /var/www/wordpress
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
<Directory /var/www/wordpress>
Options FollowSymlinks Indexes
DirectoryIndex index.php index.html
AllowOverride All
Require all granted
</Directory>
RewriteEngine on
RewriteCond %{SERVER_NAME} =7.licht-werk-studios.de [OR]
RewriteCond %{SERVER_NAME} =www.6.licht-werk-studios.de
RewriteRule ^ https://%{SERVER_NAME}%{REQUEST_URI} [END,NE,R=permanent]
</VirtualHost>