Results 1 to 4 of 4

A B C Nav Menu

This is a discussion on A B C Nav Menu within the Troubleshooting forums, part of the vBSEO SEO Plugin category; Please see this: add a.b.c nav menu in specific forum - vBulletin.org Forum I'm not sure what happened, but this ...

  1. #1
    Senior Member
    Join Date
    Nov 2005
    Posts
    150
    Liked
    0 times

    Exclamation A B C Nav Menu

    Please see this:
    add a.b.c nav menu in specific forum - vBulletin.org Forum

    I'm not sure what happened, but this suddenly stopped working for some reason.

    All of the letters are redirecting to the home page.

    Letters are linked like this for example:

    Code:
    http://www.talkjesus.com/scriptural-bible-answers/&letter=h
    Forum:
    Talk Jesus | Christian Forums & Chat - Powered by vBulletin

    If I disable vbseo plugin and rename .htacccess to .bak, it works.
    Talk Jesus Forums & Live Chat www.talkjesus.com
    [ Awesome Facts of Jesus Christ: click here ]

  2. #2
    Senior Member briansol's Avatar
    Real Name
    Brian
    Join Date
    Apr 2006
    Location
    Central CT, USA
    Posts
    6,981
    Liked
    8 times
    Have you made any other changes? upgrades in vb or vbseo?

  3. #3
    Senior Member
    Join Date
    Nov 2005
    Posts
    150
    Liked
    0 times
    No, but I just noticed this today as I was browsing. Always used to work otherwise.

    Only change I made is .htaccess as requested by one of your guys last week in a thread here. I'm using copy/paste they provided me.
    Last edited by Chad; 03-01-2009 at 08:33 PM.
    Talk Jesus Forums & Live Chat www.talkjesus.com
    [ Awesome Facts of Jesus Christ: click here ]

  4. #4
    Senior Member
    Join Date
    Nov 2005
    Posts
    150
    Liked
    0 times
    I just found the problem traced to .htaccess

    So whatever of the techs told me to copy/paste and my original htaccess was oudated, caused the problem. I replaced it with my original and it works again.

    But, I need help tracing what line(s) is the ones that make it work.

    Working version:

    Code:
    ########## VBSEO ##########
    
    RewriteEngine On
    
    RewriteCond %{HTTP_HOST} !^www\.talkjesus\.com 
    RewriteRule (.*) http://www.talkjesus.com/$1 [R=301,L]
    
    RewriteRule ^((urllist|sitemap).*\.(xml|txt)(\.gz)?)$ vbseo_sitemap/vbseo_getsitemap.php?sitemap=$1 [L]
    
    RewriteCond %{REQUEST_FILENAME} -f
    RewriteCond %{REQUEST_FILENAME} (admincp|modcp|clientscript|cpstyles|images|goldbrick|gallery)/
    RewriteRule ^(.*)$ $1 [L]
    
    RewriteCond %{REQUEST_FILENAME}index\.php -f
    RewriteRule ^(.*)$ $1index.php [L]
    
    RewriteCond %{QUERY_STRING} !vbseourl=
    RewriteCond %{REQUEST_FILENAME} !chat
    RewriteRule ^(.*\.php)$ vbseo.php?vbseourl=$1&%{QUERY_STRING} [L]
    
    RewriteRule ^$ vbseo.php?vbseourl=index.php [L]
    RewriteRule ^(archive/.*)$ vbseo.php?vbseourl=$1&%{QUERY_STRING} [L]
    
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule ^(.+)$ vbseo.php?vbseourl=$1&%{QUERY_STRING} [L]
    
    ########## YSLOW ##########
    
    ####Charset
    AddDefaultCharset Off 
    
    ####ETags
    FileETag None
    
    ####Expires
    <IfModule mod_expires.c>
    ExpiresActive On
    ExpiresByType image/gif A2592000
    ExpiresByType image/jpeg A2592000
    ExpiresByType image/png A2592000
    ExpiresByType application/x-shockwave-flash A2592000
    ExpiresByType text/css A2592000
    ExpiresByType application/x-javascript A2592000
    </IfModule>
    
    <IfModule mod_deflate.c>
    AddOutputFilterByType DEFLATE text/html text/plain text/xml
    AddOutputFilterByType DEFLATE text/css
    AddOutputFilterByType DEFLATE application/xml
    AddOutputFilterByType DEFLATE image/svg+xml
    AddOutputFilterByType DEFLATE application/rss+xml
    AddOutputFilterByType DEFLATE application/atom_xml
    AddOutputFilterByType DEFLATE application/x-javascript
    AddOutputFilterByType DEFLATE application/x-httpd-php
    AddOutputFilterByType DEFLATE application/x-httpd-fastphp
    AddOutputFilterByType DEFLATE application/x-httpd-eruby
    </IfModule>
    Non-working that vbseo tech told me to use as a updated version/replacement:

    Code:
    ########## VBSEO ##########
    
    RewriteEngine On
    
    RewriteCond %{HTTP_HOST} !^www\.talkjesus\.com
    RewriteRule (.*) http://www.talkjesus.com/$1 [L,R=301]
    
    RewriteRule ^((urllist|sitemap_).*\.(xml|txt)(\.gz)?)$ vbseo_sitemap/vbseo_getsitemap.php?sitemap=$1 [L]
    
    RewriteCond %{REQUEST_URI} !(admincp/|modcp/|cron)
    RewriteRule ^((archive/)?(.*\.php(/.*)?)?)$ vbseo.php [L,QSA]
    
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteCond %{REQUEST_FILENAME} !^(admincp|modcp|clientscript|cpstyles|images|goldbrick|gallery)/
    RewriteRule ^(.+)$ vbseo.php [L,QSA]
    
    ########## YSLOW ##########
    
    ####Charset
    AddDefaultCharset Off 
    
    ####ETags
    FileETag None
    
    ####Expires
    <IfModule mod_expires.c>
    ExpiresActive On
    ExpiresByType image/gif A2592000
    ExpiresByType image/jpeg A2592000
    ExpiresByType image/png A2592000
    ExpiresByType application/x-shockwave-flash A2592000
    ExpiresByType text/css A2592000
    ExpiresByType application/x-javascript A2592000
    </IfModule>
    
    <IfModule mod_deflate.c>
    AddOutputFilterByType DEFLATE text/html text/plain text/xml
    AddOutputFilterByType DEFLATE text/css
    AddOutputFilterByType DEFLATE application/xml
    AddOutputFilterByType DEFLATE image/svg+xml
    AddOutputFilterByType DEFLATE application/rss+xml
    AddOutputFilterByType DEFLATE application/atom_xml
    AddOutputFilterByType DEFLATE application/x-javascript
    AddOutputFilterByType DEFLATE application/x-httpd-php
    AddOutputFilterByType DEFLATE application/x-httpd-fastphp
    AddOutputFilterByType DEFLATE application/x-httpd-eruby
    </IfModule>
    Talk Jesus Forums & Live Chat www.talkjesus.com
    [ Awesome Facts of Jesus Christ: click here ]

Similar Threads

  1. Linkback menu help
    By spondishy in forum LinkBacks
    Replies: 18
    Last Post: 02-24-2009, 07:59 AM
  2. Linkback Menu?
    By GBSF in forum LinkBacks
    Replies: 3
    Last Post: 09-25-2006, 03:31 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •