topolino wrote: ↑Sun 2. Mar 2025, 10:19
In den Apache-Logs ist nichts zu finden.
Das ist merkwürdig.
Um ca. 11:30 sollte jetzt zumindest was drin sein.
Code: Select all
❯ telnet wohnweise.ch 80
Trying 84.253.4.113...
Connected to wohnweise.ch.
Escape character is '^]'.
GET / HTTP/1.1
Host: wohnweise.ch
Connection: close
HTTP/1.1 301 Moved Permanently
Date: Sun, 02 Mar 2025 10:29:08 GMT
Server: Apache
Location: https://wohnweise.ch/
Content-Length: 229
Connection: close
Content-Type: text/html; charset=iso-8859-1
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
<html><head>
<title>301 Moved Permanently</title>
</head><body>
<h1>Moved Permanently</h1>
<p>The document has moved <a href="https://wohnweise.ch/">here</a>.</p>
</body></html>
Connection closed by foreign host.
Das sieht völlig OK aus, der redirect auf https.
Dann mit https:
Code: Select all
❯ curl -v https://wohnweise.ch
* Host wohnweise.ch:443 was resolved.
* IPv6: (none)
* IPv4: 84.253.4.113
* Trying 84.253.4.113:443...
* Connected to wohnweise.ch (84.253.4.113) port 443
* ALPN: curl offers h2,http/1.1
* (304) (OUT), TLS handshake, Client hello (1):
* CAfile: /etc/ssl/cert.pem
* CApath: none
* (304) (IN), TLS handshake, Server hello (2):
* (304) (IN), TLS handshake, Unknown (8):
* (304) (IN), TLS handshake, Certificate (11):
* (304) (IN), TLS handshake, CERT verify (15):
* (304) (IN), TLS handshake, Finished (20):
* (304) (OUT), TLS handshake, Finished (20):
* SSL connection using TLSv1.3 / AEAD-CHACHA20-POLY1305-SHA256 / [blank] / UNDEF
* ALPN: server accepted h2
* Server certificate:
* subject: CN=wohnweise.ch
* start date: Feb 25 22:06:35 2025 GMT
* expire date: May 26 22:06:34 2025 GMT
* subjectAltName: host "wohnweise.ch" matched cert's "wohnweise.ch"
* issuer: C=US; O=Let's Encrypt; CN=R11
* SSL certificate verify ok.
* using HTTP/2
* [HTTP/2] [1] OPENED stream for https://wohnweise.ch/
* [HTTP/2] [1] [:method: GET]
* [HTTP/2] [1] [:scheme: https]
* [HTTP/2] [1] [:authority: wohnweise.ch]
* [HTTP/2] [1] [:path: /]
* [HTTP/2] [1] [user-agent: curl/8.7.1]
* [HTTP/2] [1] [accept: */*]
> GET / HTTP/2
> Host: wohnweise.ch
> User-Agent: curl/8.7.1
> Accept: */*
>
* Request completely sent off
< HTTP/2 301
< vary: Accept-Encoding,Cookie
< x-redirect-by: WordPress
< location: https://www.wohnweise.ch/
< strict-transport-security: max-age=15552000
< content-length: 0
< content-type: text/html; charset=UTF-8
< date: Sun, 02 Mar 2025 10:32:09 GMT
< server: Apache
<
* Connection #0 to host wohnweise.ch left intact
redirect auf die www-Subdomain:
Code: Select all
❯ curl -v https://www.wohnweise.ch
* Host www.wohnweise.ch:443 was resolved.
* IPv6: (none)
* IPv4: 84.253.4.113
* Trying 84.253.4.113:443...
* Connected to www.wohnweise.ch (84.253.4.113) port 443
* ALPN: curl offers h2,http/1.1
* (304) (OUT), TLS handshake, Client hello (1):
* CAfile: /etc/ssl/cert.pem
* CApath: none
* (304) (IN), TLS handshake, Server hello (2):
* (304) (IN), TLS handshake, Unknown (8):
* (304) (IN), TLS handshake, Certificate (11):
* (304) (IN), TLS handshake, CERT verify (15):
* (304) (IN), TLS handshake, Finished (20):
* (304) (OUT), TLS handshake, Finished (20):
* SSL connection using TLSv1.3 / AEAD-CHACHA20-POLY1305-SHA256 / [blank] / UNDEF
* ALPN: server accepted h2
* Server certificate:
* subject: CN=www.wohnweise.ch
* start date: Feb 25 22:06:47 2025 GMT
* expire date: May 26 22:06:46 2025 GMT
* subjectAltName: host "www.wohnweise.ch" matched cert's "www.wohnweise.ch"
* issuer: C=US; O=Let's Encrypt; CN=R10
* SSL certificate verify ok.
* using HTTP/2
* [HTTP/2] [1] OPENED stream for https://www.wohnweise.ch/
* [HTTP/2] [1] [:method: GET]
* [HTTP/2] [1] [:scheme: https]
* [HTTP/2] [1] [:authority: www.wohnweise.ch]
* [HTTP/2] [1] [:path: /]
* [HTTP/2] [1] [user-agent: curl/8.7.1]
* [HTTP/2] [1] [accept: */*]
> GET / HTTP/2
> Host: www.wohnweise.ch
> User-Agent: curl/8.7.1
> Accept: */*
>
* Request completely sent off
< HTTP/2 200
< vary: Accept-Encoding,Cookie
< link: <https://www.wohnweise.ch/wp-json/>; rel="https://api.w.org/", <https://www.wohnweise.ch/wp-json/wp/v2/pages/10>; rel="alternate"; title="JSON"; type="application/json", <https://www.wohnweise.ch/>; rel=shortlink
< strict-transport-security: max-age=15552000
< content-length: 0
< content-type: text/html; charset=UTF-8
< date: Sun, 02 Mar 2025 10:34:26 GMT
< server: Apache
<
* Connection #0 to host www.wohnweise.ch left intact
Als nächstes würde ich mir die .htaccess angucken, so vorhanden.
Und ob redirect oder SEO Plugins im Wordpress sind.