URL redirects of webpage

Basically, it’s a canonical redirection. In WordPress, there is a function named redirect_canonical, or there’s a canonical redirect feature which: Provides an SEO enhancement which prevents penalty for duplicate content by redirecting all incoming links to one or the other. For example, if one visits a single post page where the default or “non-pretty” URL … Read more

After changing Site http to https, can’t access wp login page with a digitalocean hosting

Make sure you set the site name correctly. Download your wp-config.php file via ftp, and add these lines: define( ‘WP_HOME’, ‘https://example.com’ ); define( ‘WP_SITEURL’, ‘https://example.com’ ); Notice the httpS. Also, if you are only using Cloudflares SSL, make sure to change the setting to Flexible SSL. But if you also have your own SSL certificate … Read more