Post
Topic
Board Project Development
Re: Crypto News Site Created Recently
by
Initscri
on 27/11/2023, 05:33:42 UTC
Before any publication, you need to do the basic setup. With SSL implementation, your redirects are not properly configured, so the page with the www prefix is not available.
It really shouldn't be a difficult task, almost any beginner can set it up. See on Amazon where you host the site about DNS settings or you can use the .httaccess file

For example, add the file to the root named .httaccess with this inside

Code:
RewriteEngine On
RewriteCond %{HTTP_HOST} ^www.thisCrowd.com [NC]
RewriteRule ^(.*)$ https://thisCrowd.com/$1 [L,R=301]

Whose are the texts that you have published on the site? Yours, copied from somewhere or generated by AI?

Good post, bear in mind his SSL is invalid/expired.

May not be a bad idea to setup LetsEncrypt.
@OP what's your hosting situation like? VPS, Shared?