Currently Exploring
relIf you are receiving warnings or even errors about your homepage being accessible both via domain.ext and domain.ext/index.php, there are two solutions: Add to your header file, or to your index.php file the following snippet: <?php $cpage = $_SERVER['REQUEST_URI']; if($cpage == ‘/’ || $cpage == ‘/index.php’) echo ‘<link rel="canonical" href="http://www.butterflymedia.ro/" />’; ?> This way, Google [...]
I’ve always wanted to know the full meaning and uses of the HTML “rel” attribute. As SitePoint published a (yet in beta) HTML reference, I will point you there to read more. The rel attribute defines the relationship that the linked resource has to the document that is referencing it. In most cases, this will [...]