Post
Topic
Board Project Development
Merits 1 from 1 user
Re: Crypto News Site Created Recently
by
examplens
on 26/10/2023, 14:52:48 UTC
⭐ Merited by FatFork (1)
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

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?