Mybb Hakkında Soru ve Sorunlarız, Yardım ve Destek için MybbDepo external Adresini Ziyaret Ediniz.
Sponsor Reklam

duyuru Güncel Duyurular!
Güncel MyBB Dökümanları.. Güncel + Orijinal MyBB Sürümleri..
bilgi mybb

Konuyu Oyla:
  • Derecelendirme: 5/5 - 1 oy
  • 1
  • 2
  • 3
  • 4
  • 5

Derecelendirme: 5/5 - 1 oy
Add to .htaccess: , meta Sorunu ( google seo )
#1
Add to .htaccess: , meta Sorunu ( google seo ) SS Burda sizden yardımları bekliyorum 53095222.jpg
Ara
Cevapla
#2
ordaki kodu htaccess dosyana eklemelisin kardeş
Ara
Cevapla
#3
yapılandırma// google seo sitemap ayarlarından sitemap oluşturmayı etkinleştir ayrıca meta redirect ve url ayarlarınıda etkinleştirmelisin.
Ara
Cevapla
#4
İyide hepsi zaten evet :/
Ara
Cevapla
#5
(14.12.2010, Saat: 23:08)Zeet Adlı Kullanıcıdan Alıntı: ordaki kodu htaccess dosyana eklemelisin kardeş

Arkadaşın yukarda dediği gibi Add to .htaccess: yazısının altındaki yerdeki kodu sitenin ana dizinindeki .htaccess dosyasına ekleyeceksin
Ara
Cevapla
#6
yaptım fakat olmadı :S
Ara
Cevapla
#7
PHP Kod:
# EXAMPLE .htaccess FOR MYBB WITH GOOGLE SEO URL

# -------------------------------------------------------------------

# This file is identical to MyBB's htaccess.txt example file,

# with rewrite rules for a standard Google SEO install added.

#

# Before using this file please make sure to:

#

#   - replace /MyBB/ with your forum folder, e.g. / or /forum/

#   - replace yoursite/MyBB with your forum URL

#   - name the file '.htaccess' (starting with the dot, no .txt)

#

# Alternatively you can add the required rewrite rules to your

# existing .htaccess, the specific rules required will be displayed

# on the plugin status page once Google SEO URL is enabled.

# -------------------------------------------------------------------



Options -MultiViews +FollowSymlinks -Indexes



#

# If mod_security is enabled, attempt to disable it.

# - Note, this will work on the majority of hosts but on

#   MediaTemple, it is known to cause random Internal Server

#   errors. For MediaTemple, please remove the block below

#

<IfModule mod_security.c>

    
# Turn off mod_security filtering.

    
SecFilterEngine Off



    
# The below probably isn't needed, but better safe than sorry.

    
SecFilterScanPOST Off

</IfModule>



#

# MyBB "search engine friendly" URL rewrites

# - Note, for these to work with MyBB please make sure you have

#   the setting enabled in the Admin CP and you have this file

#   named .htaccess

#

<IfModule mod_rewrite.c>

    
RewriteEngine on



# Make this rule the first rewrite rule in your .htaccess!

RewriteRule ^([^&]*)&(.*)$ http://lanetforum.com/$1?$2 [L,QSA,R=301]



# Google SEO Sitemap:

RewriteRule ^sitemap-([^./]+)\.xmlmisc.php?google_seo_sitemap=$[L,QSA,NC]



# Google SEO 404:

ErrorDocument 404 /misc.php?google_seo_error=404



# Google SEO URL Forums:

RewriteRule ^Forum-([^./]+)$ forumdisplay.php?google_seo_forum=$[L,QSA,NC]



# Google SEO URL Threads:

RewriteRule ^Thread-([^./]+)$ showthread.php?google_seo_thread=$[L,QSA,NC]



# Google SEO URL Announcements:

RewriteRule ^Announcement-([^./]+)$ announcements.php?google_seo_announcement=$[L,QSA,NC]



# Google SEO URL Users:

RewriteRule ^User-([^./]+)$ member.php?action=profile&google_seo_user=$[L,QSA,NC]



# Google SEO URL Calendars:

RewriteRule ^Calendar-([^./]+)$ calendar.php?google_seo_calendar=$[L,QSA,NC]



# Google SEO URL Events:

RewriteRule ^Event-([^./]+)$ calendar.php?action=event&google_seo_event=$[L,QSA,NC]



    
# Default MyBB Rewrite Rules:

    
RewriteRule ^forum-([0-9]+)\.htmlforumdisplay.php?fid=$[L,QSA]

    
RewriteRule ^forum-([0-9]+)-page-([0-9]+)\.htmlforumdisplay.php?fid=$1&page=$[L,QSA]



    
RewriteRule ^thread-([0-9]+)\.htmlshowthread.php?tid=$[L,QSA]

    
RewriteRule ^thread-([0-9]+)-page-([0-9]+)\.htmlshowthread.php?tid=$1&page=$[L,QSA]

    
RewriteRule ^thread-([0-9]+)-lastpost\.htmlshowthread.php?tid=$1&action=lastpost [L,QSA]

    
RewriteRule ^thread-([0-9]+)-nextnewest\.htmlshowthread.php?tid=$1&action=nextnewest [L,QSA]

    
RewriteRule ^thread-([0-9]+)-nextoldest\.htmlshowthread.php?tid=$1&action=nextoldest [L,QSA]

    
RewriteRule ^thread-([0-9]+)-newpost\.htmlshowthread.php?tid=$1&action=newpost [L,QSA]

    
RewriteRule ^thread-([0-9]+)-post-([0-9]+)\.htmlshowthread.php?tid=$1&pid=$[L,QSA]



    
RewriteRule ^post-([0-9]+)\.htmlshowthread.php?pid=$[L,QSA]



    
RewriteRule ^announcement-([0-9]+)\.htmlannouncements.php?aid=$[L,QSA]



    
RewriteRule ^user-([0-9]+)\.htmlmember.php?action=profile&uid=$[L,QSA]



    
RewriteRule ^calendar-([0-9]+)\.htmlcalendar.php?calendar=$[L,QSA]

    
RewriteRule ^calendar-([0-9]+)-year-([0-9]+)\.htmlcalendar.php?action=yearview&calendar=$1&year=$[L,QSA]

    
RewriteRule ^calendar-([0-9]+)-year-([0-9]+)-month-([0-9]+)\.htmlcalendar.php?calendar=$1&year=$2&month=$[L,QSA]

    
RewriteRule ^calendar-([0-9]+)-year-([0-9]+)-month-([0-9]+)-day-([0-9]+)\.htmlcalendar.php?action=dayview&calendar=$1&year=$2&month=$3&day=$[L,QSA]

    
RewriteRule ^calendar-([0-9]+)-week-(n?[0-9]+)\.htmlcalendar.php?action=weekview&calendar=$1&week=$[L,QSA]



    
RewriteRule ^event-([0-9]+)\.htmlcalendar.php?action=event&eid=$[L,QSA]



    <
IfModule mod_env.c>

        
SetEnv SEO_SUPPORT 1

    
</IfModule>

</
IfModule>



#

# If Apache is compiled with built in mod_deflade/GZIP support

# then GZIP Javascript, CSS, HTML and XML so they're sent to

# the client faster.

#

<IfModule mod_deflate.c>

    
AddOutputFilterByType DEFLATE application/x-javascript text/css text/html text/xml

</IfModule

.htaccess'i bununla değiştirmeyi dene belki işe yarar. KESİNLİKLE kendi htaccess dosyayanın yedeğini al. Eğer değişen bi'şey olmazsa eskisini yükle. Gülümseme
Ara
Cevapla

Konu ile Alakalı Benzer Konular
Konular Yazar Yorumlar Okunma Son Yorum
Soru-Sorun google seo gösterim sayısına göre listeme sorunu qugurq 3 9,403 25.04.2012, Saat: 12:59
Son Yorum: S.G



Konuyu Okuyanlar: 1 Ziyaretçi

istanbul escorts - şişli escort - seks hikaye - porno - escort bayan

© 2009-2024 MyBB.Com.TR Internet Hizmetleri, MyBBGrup.Com Alt Kuruluşudur.

Web sitemiz dahilindeki tüm sayfalar, bu sayfaları gösteren tüm ekranlar ve içerdiği her türlü bilgi ve bağlı materyal, yerleşim ve öğeler, (çözüm ortaklarının logoları ve yasal hakları hariç) MyBB.Com.TR'ye aittir.
Yazılı izin olmaksızın ve kaynak belirtilmedikçe, (Kaynak göstererek alıntı yapılabilir.) kopyalanamaz ya da yayınlanamaz. MyBB.Com.TR sitesindeki içerik-ler 5070 sayılı kanun kapsamında dijital zaman damgasıyla ve DMCA tarafından korunmaktadır.
Tüm hakları, (insafiyet ile) saklıdır.



teknoloji forumu , haber

sex hikaye - porno izle - türk ifşa istanbul escort