@roryramsden No difference in http requests for relative vs. absolute URL’s. It’s preferable to have ONE URL to reference every object and page on your site called the canonical URL. Having multiple ways to refer to the same object or page can lead to split link equity and duplicate issues, others who share your blog posts/RSS, images and search engines are not perfect either, so stick with absolute URL’s for pages and images.
Relative links just make life so much easier for people to mass copy an entire website and have it run on a new domain name. A good SEO plugin such as Yoast SEO will help out with canonicalization.
Set your domain name in WP General Settings to
http://www.yourdomain.com. Then, to keep from having duplicate content or losing ranking, be sure to add this to your .htaccess:—————————————————————
RewriteCond %{HTTP_HOST} ^salyris.com$ [NC]
RewriteRule ^(.*)$ http://www.salyris.com/$1 [R=301,L]
RewriteCond %{REQUEST_FILENAME} !.(jpg|jpeg|gif|png|css|js|pl|txt|swf|flv)$
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*) index.php
IndexOptions FancyIndexing
—————————————————————
This sets your site to http://www.yourdomain.com and redirects allhttp://yourdomain.com with a safe 301 redirection which is good for SEO.