0

im using wordpress on my web site and im having problems posting articles on facebook. for every article i post i always get the same og title and og url. this is cleary a url masking issue as my meta tags cannot change even if i settled them on wordpress header.php.

here is the website.

http://carnagenews.com/

anyone can help me?

basically i want dynamic og title/url/description/image avoiding that the url cloaking always output the same meta tag

thanks guys!

1 Answers1

2

There is couple of issue with your site:

  • Your site on http://carnagenews.com/ is just a top-level frame wrapping http://carnageweb.altervista.org/ which Facebook will not follow with linter and will not populate your OpenGraph data with correct details until OpenGraph meta exists at the URL specified by og:url meta tag.
  • Your real pages result in 404 response code for Facebook Linter (check for yourself using Debug Tool).
Juicy Scripter
  • 25,778
  • 6
  • 72
  • 93
  • thanks juicy, i want to mantain the frame in order to mask the url domain, how can i solve the issue?? should i modify my .htaccess file? – user1467086 Jun 20 '12 at 08:03
  • 1
    `.htaccess` wouldn't help here, at least until you going to proxy all your request to real pages (look into both mod_proxy andmod_rewrite `P` flag). The only solution is that URL specified by `og:url` must include OpenGraph tags in page source code, there is no other choice. – Juicy Scripter Jun 20 '12 at 10:35