MyBBDepo - Türkiyenin MyBB Deposu Forumuna Hoşgeldiniz
Eğer sitemize yaptığınız ilk ziyaretiniz ise, lütfen öncelikle Forum Kurallarını okuyunuz. Forumumuzda bilgi alışverişinde bulunabilmeniz için Kayıt olmalısınız. Üye olmayanlar forumumuzdan yararlanamazlar.
Eğer zaten kayıtlı kullanıcı iseniz, lütfen kullanıcı adınız ve şifreniz ile, Giriş yapınız. (Sitemize üyelik ücretsizdir).
Melih_TR avatar
Konuyu Oyla:
  • Derecelendirme: 0/5 - 0 oy
  • 1
  • 2
  • 3
  • 4
  • 5

Derecelendirme: 0/5 - 0 oy

Google seo


Sponsor Reklam

Çevrimdışı Melih_TR
 Tarih: 19-11-2014, Saat:23:17
#1
ben seo yu kurdum ama site hiç açılmıyor hata bu

Kod:
Internal Server Error

The server encountered an internal error or misconfiguration and was unable to complete your request.

Please contact the server administrator, [email protected] and inform them of the time the error occurred, and anything you might have done that may have caused the error.

More information about this error may be available in the server error log.

kurduktan sonra oluyor bu
Cevapla
Bunu Beğenenler:
Sponsor Reklam
Sponsor Reklam Sponsor Reklam

Çevrimdışı mecdunov
 Tarih: 20-11-2014, Saat:10:58
#2
Merhaba http://mybbdepo.com/yardim-konusu-acan-k...onusu.html konusuna uyarsanız konuya hakim arkadaşlarımız yardım edecekdir
İyi forumlar
Cevapla
Bunu Beğenenler:

Çevrimdışı cod3rr
 Tarih: 20-11-2014, Saat:17:19
#3
Bencede Yardım Konusuna bir Bak Ama Ben Yinede Cevabını Söyleyeyim.Artık Diğer Konularda Dikkatli olursun Göz kırpma

Sitenin Ana Dizininde Yani Public_Html veya root Klasöründeki .htaccess dosyasını silmen veya içeriğini şu kodla değiştirmen yeterli olacaktır Gülümseme Ama Bu Kod Sadece 1.8.* Sürümü İçin Geçerlidir

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

    
# Some hosts need a RewriteBase specification.
    
RewriteBase /MyBB/

    
# Google SEO workaround for search.php highlights:
    # Make this rule the first rewrite rule in your .htaccess!
    
RewriteRule ^([^&]*)&(.*)$ http://yoursite/MyBB/$1?$2 [L,QSA,R=301]

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

    
# 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]

    
# Google SEO 404:
    
ErrorDocument 404 /MyBB/misc.php?google_seo_error=404

    
# 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
Cevapla
Bunu Beğenenler: Melih_TR

Çevrimdışı Melih_TR
 Tarih: 20-11-2014, Saat:17:26
#4
Sağol daha dikkatli olurum Gülümseme
Cevapla
Bunu Beğenenler:

Çevrimdışı cod3rr
 Tarih: 20-11-2014, Saat:17:29
#5
Önemli Değil Gülümseme
Cevapla
Bunu Beğenenler:

 


Konu ile Alakalı Benzer Konular
Konular Yazar Yorumlar Okunma Son Yorum
  [1.8] google seo ile alakalı pascal37 1 960 23-02-2021, Saat:04:39
Son Yorum: mute8100
  Google Seo Eklentisi Kurulumu Yardım endulus 1 1,021 23-02-2021, Saat:04:37
Son Yorum: mute8100
  [1.8] Google Seo kurulumunda hata byinnocent97 2 1,493 09-01-2021, Saat:11:36
Son Yorum: pascal37
  Google Seo Eklenti Veritabanı Hatası Extreme 1 907 20-05-2020, Saat:12:13
Son Yorum: MelihAtasever
  [MCTR - 1.8] Google İndexleme Sorunu loogips 0 750 16-05-2020, Saat:23:50
Son Yorum: loogips



Konuyu Okuyanlar: 1 Ziyaretçi

istanbul escort - mecidiyeköy escort - şişli escort - ataköy escort - taksim escort - escort mecidiyeköy

sex hikaye - porno izle - türk ifşa - mecidiyeköy escort - seks hikaye - türk porno - escort bayan