HLI
feddit.org kann man nicht mit Netscape ansurfen.

  • d_k_bo@feddit.org
    link
    fedilink
    Deutsch
    arrow-up
    2
    ·
    edit-2
    3 days ago

    Funktioniert die Verbindung auch nicht per http ?

    Nö.

    $ curl -i http://www.feddit.org/
    HTTP/1.1 301 Moved Permanently
    Date: Wed, 19 Feb 2025 13:13:37 GMT
    Content-Type: text/html
    Content-Length: 162
    Connection: keep-alive
    Location: https://feddit.org/
    
    <html>
    <head><title>301 Moved Permanently</title></head>
    <body>
    <center><h1>301 Moved Permanently</h1></center>
    <hr><center>nginx</center>
    </body>
    </html>
    

    Man könnte allerdings einen Proxy einsetzen, der die https-Verbindung aufbaut.

    Edit:

    http://feddit.org/ (ohne www) führt per 308 auch zu https://feddit.org/.
    $ curl -i http://feddit.org/
    HTTP/1.1 308 Permanent Redirect
    Date: Wed, 19 Feb 2025 15:40:11 GMT
    Content-Type: text/html
    Content-Length: 164
    Connection: keep-alive
    Location: https://feddit.org/
    
    <html>
    <head><title>308 Permanent Redirect</title></head>
    <body>
    <center><h1>308 Permanent Redirect</h1></center>
    <hr><center>nginx</center>
    </body>
    </html>