ı have a Canonicalization error. when ı test it in seositecheckup. How can ı resolve this ?
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Join our DigitalOcean community of over a million developers for free! Get help and share knowledge in Q&A, subscribe to topics of interest, and get courses and tools that will help you grow as a developer and scale your project or business.
I am using
You can use this code to redirect the www URL to a non-www URL.
Hi @kocaeli,
Depending on the Web Service you are using - Apache or Nginx the redirection rules are configured differently.
Nginx
If you are using Nginx, you’ll need to add the following block of code in your site’s Nginx configuration
DigitalOcean has a pretty good article on how to do that here - https://www.digitalocean.com/community/tutorials/how-to-redirect-www-to-non-www-with-nginx-on-centos-7
Apache
If you are using Apache, the redirection would need to be done in an .htaccess file located in your website’s directory.
You can add the following to the .htaccess file in order for the redirection to work
That’s it, you now have examples for both WebServices and you should be good to go!
Regards, KDSys
Do you use Nginx, Apache, or something else?