مرجع پارسی MyBB

نسخه‌ی کامل: پلاگین Google SEO [پارسی شده توسط مای بی بی ایران]
شما درحال مشاهده‌ی نسخه‌ی متنی این صفحه می‌باشید. مشاهده‌ی نسخه‌ی کامل با قالب‌بندی مناسب.
صفحه‌ها: 1 2 3 4 5 6 7
کسی نیس جواب بدهDodgy
نقل‌قول: کسی نیس جواب بدهDodgy

تغييرات لازم را در فايل htaccess انجام داديد ؟
یک سوال پلاگین گوگل سئو ، این پارامتر سایت رو بهینه می کنه ؟ چقدر زمان می بره ؟ آیا بلافاصله این کارو انجام میده یا زمان می بره ؟
من هنوز مشکل دارم.

تو لینوکس هم با .htaccess چک کردم باز نشد.
مشکل از جای دیگه است. یکی از دوستا نگفته بود باید در function یه تغییری بدیم اونو امتحان نکردم هنوز. ولی مهم اینه که خود پلاگین مشکل داره.
کسی تونسته استفاده کنه برای 1.6
سلام دوستان

من پلاگین رو نصب کردم منتهی در روت هاست سه تا فایل با نام htaccess دارم که کمی برام عجیبه

اولی که همان htaccess.txt هست که برای سئو باید تغییر کند(هنوز تغییر ندادم) با حجم 2.6 کیلو بایت

متن محتویات
کد:
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
    RewriteRule ^forum-([0-9]+)\.html$ forumdisplay.php?fid=$1 [L,QSA]
    RewriteRule ^forum-([0-9]+)-page-([0-9]+)\.html$ forumdisplay.php?fid=$1&page=$2 [L,QSA]

    RewriteRule ^thread-([0-9]+)\.html$ showthread.php?tid=$1 [L,QSA]
    RewriteRule ^thread-([0-9]+)-page-([0-9]+)\.html$ showthread.php?tid=$1&page=$2 [L,QSA]
    RewriteRule ^thread-([0-9]+)-lastpost\.html$ showthread.php?tid=$1&action=lastpost [L,QSA]
    RewriteRule ^thread-([0-9]+)-nextnewest\.html$ showthread.php?tid=$1&action=nextnewest [L,QSA]
    RewriteRule ^thread-([0-9]+)-nextoldest\.html$ showthread.php?tid=$1&action=nextoldest [L,QSA]
    RewriteRule ^thread-([0-9]+)-newpost\.html$ showthread.php?tid=$1&action=newpost [L,QSA]
    RewriteRule ^thread-([0-9]+)-post-([0-9]+)\.html$ showthread.php?tid=$1&pid=$2 [L,QSA]

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

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

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

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

    RewriteRule ^event-([0-9]+)\.html$ calendar.php?action=event&eid=$1 [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/javascript text/css text/html text/xml
</IfModule>

دومی.htaccess که ابتدا کاملا خالی بود که البته یه کد برای تغییر صفحات به اچ تی ام ال داخلش گذاشتم (فقط)

متن محتویات این یکی

کد:
#

# 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

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

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



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

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

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

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

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

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

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



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



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



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



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

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

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

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

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



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

سومی هم یک فایل htaccess بدون نقطه و کاملا خالی !

حالا : محتویات فایل اول (تکست دار) رو داخل فایل دوم بریزم و فایل رو حذف کنم یا بزرام باشه ؟

و اینکه این فایل دوم و سوم اصلا از کجا پیدا شون شده ؟ چون تا جایی که یادمه خودمون باید به طور دستی تکست رو برمی داشتیم !

کلا چند تا فایل htaccess باید در روتم باشه؟

با تشکر
درود.
محتویات فایل اولhtaccess.txtکه مال گوگل سئو هست رو به فایل دوم یعنیhtaccess. اضافه کنید فایل سوم(خالی) و اولhtaccess.txtرو هم حذف کنید . کلا باید یک فایل باشه به نام htaccess. و همه کد ها به اون اضافه بشه.
سلام
توی قسمت آموزش عکسا پاک شده و بعضی کدهایی که باید قرار بدیم داخل اون عکساس!
الان توی فایل htaccess. و بقیه کلا چیا باید وارد کنیم؟! چون عکسا هم توی وطن دانلود هم توی خود مای بی بی ایران پاک شدن چیزی معلوم نیست!
من الان تمام کارای لازمو انجام دادم فقط بعضی قسمتا که باید بعضی فایلا رو ادیت کنیم چون عکسش پاک شده نمیدونم باید چیکار کنم!Exclamation

الان این پلاگینو فعال که میکنم تاپیکا باز نمیشه ارور 404 میده غیرفعالشم که میکنم بازم همین ارور رو میده
خواهشا بگید چیکار کنم دیگه این مشکل خیلی بزرگهSad

خب قسمت تنظیمات 404 رو همه رو روی خیر گذاشتم خدا رو شکر فعلا مشکل ارور دادن تالارها و تاپیک ها حل شد
ولی در کل اون قسمتایی که باید ویرایش بشه رو اگه بگید به چه صورته و چه کدهایی باید درونش قرار بگیره ممنون میشمWink
سلام
دوستانی که این پلاگین رو نصب کردن، افزایش رنک و رتبه داشتن؟
من سایت و تاحدودی سئو کردم ولی میخوام بدونم نیازه که این پلاگین هم نصب باشه یا نه؟
10 آیتم در سئو که گوگل از آن متنفر است

ادامه مطلب سایت


دوستان ورژن جدید این پلاگین آمده

http://mods.mybb.com/download/google-seo


MyBB-Google-SEO-1.6.6



می توانم این را نصب کنم

مشکلی پیش نمی آید؟؟
صفحه‌ها: 1 2 3 4 5 6 7