No-www redirect: www.markimarta.com to markimarta.com
Search engines don’t like some versions of site URL, even if it’s the same domain with and without "www". Sometimes search engines can ban your site because of the same content on several domains.
So, if you want your site to be without "www", you need to add some rules to a web-server. For example, our site is "markimarta.com", we need to make a permanent redirect from "www.markimarta.com" to "markimarta.com".
For nginx it is:
if ($host = 'www.markimarta.com' ) {
rewrite ^(.*)$ https://markimarta.com$1 permanent;
}
For Apache (with module mod_rewrite)
RewriteCond %{HTTP_HOST} .
RewriteCond %{HTTP_HOST} ^www.markimarta.com [NC]
RewriteRule (.*) https://markimarta.com/$1 [R=301,L]

PostgreSQL in Docker: when DBeaver lies (and psql saves the day)
SharePoint onPrem: Create ContentType with the specific ID
Send props from Child class component to Parent state component in React App