Wordpress: Unterschied zwischen den Versionen

Aus Vosp.info
Wechseln zu:Navigation, Suche
(Die Seite wurde neu angelegt: „ == apache conf == * /etc/apache2/sites-available/wpseite.de.conf <source lang=> <VirtualHost *:80> ServerName wpseite.de ServerAlias www.wpsei…“)
 
Zeile 6: Zeile 6:
 
         ServerName wpseite.de
 
         ServerName wpseite.de
 
         ServerAlias www.wpseite.de
 
         ServerAlias www.wpseite.de
         DocumentRoot /var/www/weltacker.netz.coop
+
         DocumentRoot /var/www/wpseite.server.tld
 
         ErrorLog ${APACHE_LOG_DIR}/error.wpseite.de.log
 
         ErrorLog ${APACHE_LOG_DIR}/error.wpseite.de.log
 
         CustomLog ${APACHE_LOG_DIR}/access.wpseite.de.log combined
 
         CustomLog ${APACHE_LOG_DIR}/access.wpseite.de.log combined

Version vom 6. März 2021, 13:13 Uhr

apache conf

  • /etc/apache2/sites-available/wpseite.de.conf
<VirtualHost *:80>
        ServerName wpseite.de
        ServerAlias www.wpseite.de
        DocumentRoot /var/www/wpseite.server.tld
        ErrorLog ${APACHE_LOG_DIR}/error.wpseite.de.log
        CustomLog ${APACHE_LOG_DIR}/access.wpseite.de.log combined

        RewriteEngine On
        # ohne www erzwingen
        RewriteCond %{HTTP_HOST} ^www.wpseite\.de$ [NC]
        RewriteRule ^(.*)$ http://wpseite.de/$1 [R=301,L]

        # backend deaktivieren
        Redirect /wp-login.php       /
        Redirect /wp-admin       /

        ServerSignature Off
        <Directory /var/www/weltacker.netz.coop/>
                AllowOverride All
                Order allow,deny
                allow from all
        </Directory>
</VirtualHost>