Facebook nicht in der Lage zu kratzen an meiner url

Habe ich die HTML-Struktur für meine Seite wie unten angegeben. Ich habe alle meta-og-tags, aber immer noch facebook ist nicht in der Lage, kratzen Sie alle info von meiner Seite.

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"  xmlns:fb="http://www.facebook.com/2008/fbml">
    <head>
            <meta http-equiv="Content-Type" content="text/html;" charset=utf-8"></meta>
            <title>My Site</title>
            <meta content="This is my title" property="og:title">
            <meta content="This is my description" property="og:description">
            <meta content="http://ia.media-imdb.com/images/rock.jpg" property="og:image">
            <meta content="<MYPAGEID>" property="fb:page_id">
            .......
    </head>
    <body>
    .....

Wenn ich die URL in der facebook-debugger(https://developers.facebook.com/tools/debug), bekomme ich die folgenden Meldungen:

Scrape Information
Response Code   404

Critical Errors That Must Be Fixed
Bad Response Code   URL returned a bad HTTP response code.


Errors that must be fixed

Missing Required Property   The 'og:url' property is required, but not present.
Missing Required Property   The 'og:type' property is required, but not present.
Missing Required Property   The 'og:title' property is required, but not present.


Open Graph Warnings That Should Be Fixed
Inferred Property   The 'og:url' property should be explicitly provided, even if a    value can be inferred from other tags.
Inferred Property   The 'og:title' property should be explicitly provided, even if a value can be inferred from other tags.

Warum ist facebook nicht das Lesen der meta-tags info? Die Seite ist zugänglich und nicht versteckt hinter anmelden, usw.

UPDATE

Ok ich habe etwas zu Debuggen und das ist, was ich gefunden habe. Ich habe htaccess-Regel Satz in meinem Verzeichnis - ich bin mit PHP Codeigniter framework und htaccess-Regel zu entfernen index.php aus der url.

So, wenn ich die feed-url zu facebook-debugger(https://developers.facebook.com/tools/debug) ohne index.php, facebook zeigt einen 404, aber wenn ich die feed-url mit index.php es ist in der Lage zu analysieren, meine Seite.

Nun wie mache ich facebook Inhalte, wenn die url nicht index.php?

Dies ist meine htaccess-Regel:

<IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /

    #Removes access to the system folder by users.
    #Additionally this will allow you to create a System.php controller,
    #previously this would not have been possible.
    #'system' can be replaced if you have renamed your system folder.
    RewriteCond %{REQUEST_URI} ^system.*
    RewriteRule ^(.*)$ /index.php?/$1 [L]

    #When your application folder isn't in the system folder
    #This snippet prevents user access to the application folder
    #Submitted by: Fabdrol
    #Rename 'application' to your applications folder name.
    RewriteCond %{REQUEST_URI} ^application.*
    RewriteRule ^(.*)$ /index.php?/$1 [L]

    #Checks to see if the user is attempting to access a valid file,
    #such as an image or css document, if this isn't true it sends the
    #request to index.php
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule ^(.*)$ index.php?/$1 [L]
</IfModule>

<IfModule !mod_rewrite.c>
    # If we don't have mod_rewrite installed, all 404's
    # can be sent to index.php, and everything works as normal.
    # Submitted by: ElliotHaughin

    ErrorDocument 404 /index.php
</IfModule>
  • Es meldet einen 404 (Nicht gefunden) Fehler-code. Es muss etwas falsch mit der url, die Sie ihn zu füttern.
  • Hallo Klaus, ich habe aktualisiert mein Frage mit einigem Debuggen habe ich. Bitte werfen Sie einen Blick und lassen Sie mich wissen, Ihre Kommentare
InformationsquelleAutor Ninja | 2012-04-10
Schreibe einen Kommentar