Skocz do zawartości

Problem z indeksacją tematów na forum opartym o skrypt SMF


Rekomendowane odpowiedzi

Mam ogromny problem z uporaniem sobie z problemem aby na moim forum internetowym opartym o skrypt SMF nowe posty, tematy się indeksowały. Profile użytkowników indeksują się, posty z wap2 również, nawet ostatnio stworzona strona kontakt zaindeksowała się a posty żadne. Mam mapę strony, plik robot. W czym jest problem ?

Adres forum to : https://www.forumgornicze.pl

zaindeksowane.jpg

podam informacje jakie będziecie tylko chcieli ale ja już nie wiem co jest grane :D

Plik robot.txt

User-agent: Googlebot-Mobile
Allow: /*wap
Disallow: /

User-agent: YandexImageResizer
Allow: /*wap
Disallow: /

User-agent: MediaPartners-Google
Allow: /

User-agent: *
Allow: /$
Allow: /*type=rss
Allow: /*sitemap
Disallow: /*action
Disallow: /*;
Disallow: /*PHPSESSID
Allow: /*board*.html$
Allow: /*topic*.html$
Allow: /*board
Allow: /*topic
Disallow: /
Sitemap: https://www.forumgornicze.pl/index.php?action=sitemap;xml
Crawl-delay: 5
Clean-param: PHPSESSID /index.php
Host: www.forumgornicze.pl

VPS już od 130 zł netto (rocznie) - Kliknij tutaj

Odnośnik do komentarza
Udostępnij na innych stronach

jedyna rada: zmienić sposób linkowania, masz mało wartościowych linków - daruj sobie tego SWL'a gdzie masz linki na stronach porno, między tekstami typu Jak skłonić dziewczynę do wzięcia do buzi lub gratis Web cam live girls

---

e: literówka

Panie Boże, chroń mnie przed debilami, bo rozmowa z nimi powoduje, że  grzeszę pychą..

Były sobie świnki trzy - content, google oraz link | jestem uczulony na pierd*lenie głupot | idiot intruder aka internetowy poszukiwacz prawdy 

Odnośnik do komentarza
Udostępnij na innych stronach

w sensie jak techniczny?

jeżeli uważasz, że ten sposób linkowania jest OK, to doczytaj dział "dla początkujących"

---

e: literówka

Panie Boże, chroń mnie przed debilami, bo rozmowa z nimi powoduje, że  grzeszę pychą..

Były sobie świnki trzy - content, google oraz link | jestem uczulony na pierd*lenie głupot | idiot intruder aka internetowy poszukiwacz prawdy 

Odnośnik do komentarza
Udostępnij na innych stronach

Tego nie kwestionuję co napisałeś. Tylko dlaczego strona kontakt dodała się natychmiast a posty nawet te z przed dwóch miesięcy ani rusz ? Profile indeksują się prawie natychmiast max 24 h. A posty leżą leżą i nic. Nawet linkowałem wewnętrznie użyłem Donlinkage hmm i co nic jak nie było w google działu edukacja tak go nie ma do dzisiaj.

Znalazłem inne forum oparte o ten skrypt i co mamy sytuacja podobna a z tego co wywnioskowałem nie jest pozycjonowane SWL

adres do witryny https://www.forum.fiatklub.org

VPS już od 130 zł netto (rocznie) - Kliknij tutaj

Odnośnik do komentarza
Udostępnij na innych stronach

[...]

strona kontakt dodała się natychmiast a posty nawet te z przed dwóch miesięcy ani rusz ? Profile indeksują się prawie natychmiast max 24 h. A posty leżą leżą i nic.

[...]

adres do witryny https://www.forum.fiatklub.org

Nie znam SMF, więc zapytam - nie ma w configu forum banana na wizyty bota w postach?

Panie Boże, chroń mnie przed debilami, bo rozmowa z nimi powoduje, że  grzeszę pychą..

Były sobie świnki trzy - content, google oraz link | jestem uczulony na pierd*lenie głupot | idiot intruder aka internetowy poszukiwacz prawdy 

Odnośnik do komentarza
Udostępnij na innych stronach

Może to coś pomoże ? Wywaliłem już nawet to

// Please don't index these Mr Robot.
if (!empty($context['robot_no_index']))
	echo '
<meta name="robots" content="noindex" />';

i dalej nic oczywiście nie oczekuję zmian po godzinie tylko minimum 24 h

// Initialize the template... mainly little settings.
function template_init()
{
global $context, $settings, $options, $txt;

/* Use images from default theme when using templates from the default theme?
	if this is 'always', images from the default theme will be used.
	if this is 'defaults', images from the default theme will only be used with default templates.
	if this is 'never' or isn't set at all, images from the default theme will not be used. */
$settings['use_default_images'] = 'never';

/* What document type definition is being used? (for font size and other issues.)
	'xhtml' for an XHTML 1.0 document type definition.
	'html' for an HTML 4.01 document type definition. */
$settings['doctype'] = 'xhtml';

/* The version this template/theme is for.
	This should probably be the version of SMF it was created for. */
$settings['theme_version'] = '2.0';

/* Set a setting that tells the theme that it can render the tabs. */
$settings['use_tabs'] = true;

/* Use plain buttons - as opposed to text buttons? */
$settings['use_buttons'] = true;

/* Show sticky and lock status separate from topic icons? */
$settings['separate_sticky_lock'] = true;

/* Does this theme use the strict doctype? */
$settings['strict_doctype'] = false;

/* Does this theme use post previews on the message index? */
$settings['message_index_preview'] = false;

/* Set the following variable to true if this theme requires the optional theme strings file to be loaded. */
$settings['require_theme_strings'] = true;
}

// The main sub template above the content.
function template_html_above()
{
global $context, $settings, $options, $scripturl, $txt, $modSettings;

// Show right to left and the character set for ease of translating.
echo '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="https://www.w3.org/1999/xhtml"', $context['right_to_left'] ? ' dir="rtl"' : '', '>
<head>';

// The ?fin20 part of this link is just here to make sure browsers don't cache it wrongly.
echo '
<link rel="stylesheet" type="text/css" href="', $settings['theme_url'], '/css/index', $context['theme_variant'], '.css?fin20" />';

// Some browsers need an extra stylesheet due to bugs/compatibility issues.
foreach (array('ie7', 'ie6', 'webkit') as $cssfix)
	if ($context['browser']['is_' . $cssfix])
		echo '
<link rel="stylesheet" type="text/css" href="', $settings['default_theme_url'], '/css/', $cssfix, '.css" />';

// RTL languages require an additional stylesheet.
if ($context['right_to_left'])
	echo '
<link rel="stylesheet" type="text/css" href="', $settings['theme_url'], '/css/rtl.css" />';

// Here comes the JavaScript bits!
echo '
<script type="text/javascript" src="', $settings['default_theme_url'], '/scripts/script.js?fin20"></script>
<script type="text/javascript" src="', $settings['theme_url'], '/scripts/theme.js?fin20"></script>
<script type="text/javascript"><!-- // --><![CDATA[
	var smf_theme_url = "', $settings['theme_url'], '";
	var smf_default_theme_url = "', $settings['default_theme_url'], '";
	var smf_images_url = "', $settings['images_url'], '";
	var smf_scripturl = "', $scripturl, '";
	var smf_iso_case_folding = ', $context['server']['iso_case_folding'] ? 'true' : 'false', ';
	var smf_charset = "', $context['character_set'], '";', $context['show_pm_popup'] ? '
	var fPmPopup = function ()
	{
		if (confirm("' . $txt['show_personal_messages'] . '"))
			window.open(smf_prepareScriptUrl(smf_scripturl) + "action=pm");
	}
	addLoadEvent(fPmPopup);' : '', '
	var ajax_notification_text = "', $txt['ajax_in_progress'], '";
	var ajax_notification_cancel_text = "', $txt['modify_cancel'], '";
// ]]></script>';

echo '
<meta http-equiv="Content-Type" content="text/html; charset=', $context['character_set'], '" />
<meta name="description" content="', $context['page_title_html_safe'], '" />', !empty($context['meta_keywords']) ? '
<meta name="keywords" content="' . $context['meta_keywords'] . '" />' : '', '
<title>', $context['page_title_html_safe'], '</title>';

// Please don't index these Mr Robot.
if (!empty($context['robot_no_index']))
	echo '
<meta name="robots" content="noindex" />';

// Present a canonical url for search engines to prevent duplicate content in their indices.
if (!empty($context['canonical_url']))
	echo '
<link rel="canonical" href="', $context['canonical_url'], '" />';

// Show all the relative links, such as help, search, contents, and the like.
echo '
<link rel="help" href="', $scripturl, '?action=help" />
<link rel="search" href="', $scripturl, '?action=search" />
<link rel="contents" href="', $scripturl, '" />';

// If RSS feeds are enabled, advertise the presence of one.
if (!empty($modSettings['xmlnews_enable']) && (!empty($modSettings['allow_guestAccess']) || $context['user']['is_logged']))
	echo '
<link rel="alternate" type="application/rss+xml" title="', $context['forum_name_html_safe'], ' - ', $txt['rss'], '" href="', $scripturl, '?type=rss;action=.xml" />';

// If we're viewing a topic, these should be the previous and next topics, respectively.
if (!empty($context['current_topic']))
	echo '
<link rel="prev" href="', $scripturl, '?topic=', $context['current_topic'], '.0;prev_next=prev" />
<link rel="next" href="', $scripturl, '?topic=', $context['current_topic'], '.0;prev_next=next" />';

// If we're in a board, or a topic for that matter, the index will be the board's index.
if (!empty($context['current_board']))
	echo '
<link rel="index" href="', $scripturl, '?board=', $context['current_board'], '.0" />';

// Output any remaining HTML headers. (from mods, maybe?)
echo $context['html_headers'];

echo '
</head>

VPS już od 130 zł netto (rocznie) - Kliknij tutaj

Odnośnik do komentarza
Udostępnij na innych stronach

Przecież masz w pliku robots.txt zablokowane.

User-agent: Googlebot-Mobile

Allow: /*wap

Disallow: /

User-agent: YandexImageResizer

Allow: /*wap

Disallow: /

User-agent: MediaPartners-Google

Allow: /

User-agent: *

Allow: /$

Allow: /*type=rss

Allow: /*sitemap

Disallow: /*action

Disallow: /*;

Disallow: /*PHPSESSID

Allow: /*board*.html$

Allow: /*topic*.html$

Allow: /*board

Allow: /*topic

Disallow: /

Sitemap: https://www.forumgornicze.pl/index.php?action=sitemap;xml

Crawl-delay: 5

Clean-param: PHPSESSID /index.php

Host: www.forumgornicze.pl

Ogarnij ten plik.

Usuń ten ukośniki Disallow: /

Zrób od początku tego robota.

User-agent: *
Disallow:
Sitemap: https://www.forumgornicze.pl/index.php?action=sitemap;xml

Taki robots Ci w zupełności wystarczy. Ewentualnie użyj

Dissallow: /ścieżka do pliku, którą chcesz zabezpieczyć przed indeksowaniem.

Jeśli nie masz co robić, to zawsze możesz poczytać o zarabianiu na blogu <<Na tym blogu komentarze z Dofollow

Chcesz naturalny link? Artykuły sponsorowane

Odnośnik do komentarza
Udostępnij na innych stronach

Zarchiwizowany

Ten temat przebywa obecnie w archiwum. Dodawanie nowych odpowiedzi zostało zablokowane.

  • Ostatnio przeglądający   0 użytkowników

    • Brak zarejestrowanych użytkowników przeglądających tę stronę.
×
×
  • Dodaj nową pozycję...

Powiadomienie o plikach cookie

Umieściliśmy na Twoim urządzeniu pliki cookie, aby pomóc Ci usprawnić przeglądanie strony. Możesz dostosować ustawienia plików cookie, w przeciwnym wypadku zakładamy, że wyrażasz na to zgodę. Warunki użytkowania Polityka prywatności