Is it possible to use the same meta tag for opengraph and schema.org

HTML+RDFa 1.1 and Microdata extend HTML5’s meta element. HTML+RDFa 1.1 (W3C Recommendation) defines: If the RDFa @property attribute is present on the meta element, neither the @name, @http-equiv, nor @charset attributes are required and the @content attribute MUST be specified. Microdata (W3C Note) defines: If a meta element has an itemprop attribute, the name, http-equiv, … Read more

.htaccess 301 redirect of single page

RedirectMatch uses a regular expression that is matched against the URL path. And your regular expression /contact.php just means any URL path that contains /contact.php but not just any URL path that is exactly /contact.php. So use the anchors for the start and end of the string (^ and $): RedirectMatch 301 ^/contact\.php$ /contact-us.php

Ignore URLs in robot.txt with specific parameters?

Here’s a solutions if you want to disallow query strings: Disallow: /*?* or if you want to be more precise on your query string: Disallow: /*?dir=*&order=*&p=* You can also add to the robots.txt which url to allow Allow: /new-printer$ The $ will make sure only the /new-printer will be allowed. More info: http://code.google.com/web/controlcrawlindex/docs/robots_txt.html http://sanzon.wordpress.com/2008/04/29/advanced-usage-of-robotstxt-w-querystrings/

Doing links like Twitter, Hash-Bang #! URL’s [duplicate]

“Hash-Bang” navigation, as it’s sometimes called, … http://example.com/path/to/#!/some-ajax-state …is a temporary solution for a temporary problem that is quickly becoming a non-issue thanks to modern browser standards. In all likelihood, Twitter will phase it out, as Facebook is already doing. It is the combination of several concepts… In the past, a link served two purposes: … Read more

Remove index.php?route=common/home from OpenCart

To simply remove that, you can do a basic replace in /catalog/controller/common/seo_url.php Find: return $link; Before it on a new line put: $link = str_replace(‘index.php?route=common/home’, ”, $link); Edit by TheBlackBenzKid: If you want full SEO just use this line instead of the above: $link = str_replace(‘index.php?route=”, “‘, $link); Also make sure SEO URLs is turned … Read more