vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.0 Beta Releases (https://vborg.vbsupport.ru/forumdisplay.php?f=34)
-   -   Spider Friendly URL hack (https://vborg.vbsupport.ru/showthread.php?t=69930)

djohn 09-28-2004 06:08 PM

Quote:

Originally Posted by Polo
Yeah, that is what this mod does..

that's not what i asked

krohnathlonman 09-29-2004 01:20 AM

I've updated the first post with quite a bit more information.

Djohn it will NOT be creating URLS like that. It will be creating MUCH better URLs

Logikos 09-29-2004 02:58 AM

Very nice, i can't wait till you figure out how to get all the links a .HTML file!! :)

krohnathlonman 09-29-2004 03:21 AM

I'm working on it :) I'm having trouble finding where those breadcrumb links are created. I've posted a thread asking for help on this. I'm sure I'm only missing something small to make the multi page work right. I've just done the modifications to newthread and newreply so that they get sent to the right URLs now. I'm slowly tracking things down to eliminate all those nasty URLs.

Search engines are where I get most of my traffic from so everything I can possibly do to improve them I'm going after! I've been capturing quite a few big search phrases the past few months and I've found one that is seriously bringing in nearly 1k ppl/day and about 60 terms that bring in more than 1k ppl this month! I need to pick up the pace for winter when things hit their prime.

My .htaccess is now looking like this:
Code:

RewriteEngine on
RewriteRule ^t-([0-9]+)?-([0-9]+) showthread.php?t=$1&page=$2 [L]
RewriteRule ^t-([0-9]+) showthread.php?t=$1 [L]
RewriteRule ^f-([0-9]+) forumdisplay.php?f=$1 [L]
RewriteRule ^p-([0-9]+) showthread.php?p=$1 [L]

the first t- is my attempt at multi page support.

Logikos 09-29-2004 03:30 AM

Quote:

Originally Posted by krohnathlonman
I'm working on it :) I'm having trouble finding where those breadcrumb links are created. I've posted a thread asking for help on this. I'm sure I'm only missing something small to make the multi page work right. I've just done the modifications to newthread and newreply so that they get sent to the right URLs now. I'm slowly tracking things down to eliminate all those nasty URLs.

Search engines are where I get most of my traffic from so everything I can possibly do to improve them I'm going after! I've been capturing quite a few big search phrases the past few months and I've found one that is seriously bringing in nearly 1k ppl/day and about 60 terms that bring in more than 1k ppl this month! I need to pick up the pace for winter when things hit their prime.

My .htaccess is now looking like this:
Code:

RewriteEngine on
RewriteRule ^t-([0-9]+)?(-[0-9]+) showthread.php?t=$1&page=$2 [L]
RewriteRule ^t-([0-9]+) showthread.php?t=$1 [L]
RewriteRule ^f-([0-9]+) forumdisplay.php?f=$1 [L]
RewriteRule ^p-([0-9]+) showthread.php?p=$1 [L]

the first t- is my attempt at multi page support.

Very kool, i can't wait till you figure the rest out.

krohnathlonman 09-29-2004 03:39 AM

I edited my post above to include my NOW working multi page support! Here it is a second time just in case you're a lil slow....
Code:

RewriteRule ^t-([0-9]+)?-([0-9]+) showthread.php?t=$1&page=$2 [L]
If you know the templates you can now find the multi page references and get them working properly!

I used dreamweaver to search the entire vbulletin directory for the code $url which is used for redirects in things like the newthread and newpost. I modifed them slightly so now all redirects are working properly.

Yes this is running notes as I figure things out... I'm looking for help/suggestions. You will have to know a little bit about the templates and do a bit of thinking but everything you need to know to do this hack is posted in this thread. Step by Step instructions will be put together when I get things finalized.

Zachery 09-29-2004 03:45 AM

I think Xenon has released somthing to this effect, and Dani released a very good tutorial about this, however ive never had issues with google properly spidering my pages. so i dont see how this makes vBulletin any more SE freindly then nit already is.

krohnathlonman 09-29-2004 04:13 AM

Xenon released an archive.... This is quite different since its bringing addresses like that to the actual forum. I'm looking for Dani's Tutorial right now.... Can ya link me? not finding in the search on vb.com or .org

Friendlier URLs like this have shown to get better positioning in searches.
One of the key things with google is how many sites are linking to a URL.... Take the URL position benefit THEN tack on people linking to these URLs instead of the showthread.php?t=XXXXX type URLs and I BET you will see a benefit from this. This is not a "quick" fix by any means but eventually over time you will see the benefit.

The greatest example of a site getting killer search positioning primarily due to a mod like this is computercops

krohnathlonman 09-29-2004 04:35 AM

in functions_forumdisplay.php
Code:

                        $totalpages = ceil($thread['totalposts'] / $pperpage);
//        orignal line                $address = "showthread.php?$session[sessionurl]t=$thread[threadid]";

                        $address = "t-$thread[threadid]";
                        $address2 = "$thread[highlight]";
                        $curpage = 0;

Then in the template threadbit_pagelink
Code:

<a href="$address-$curpage$address2.html">$curpage</a>
Next thing I have to track down is that top right navbar and correct those links.

krohnathlonman 09-29-2004 05:03 AM

wow this is proving to be alot of work LOL for the top right links: showthread.php
Code:

        $DB_site->free_result($posts);
        unset($post);

        DEVDEBUG("First Post: $FIRSTPOSTID; Last Post: $LASTPOSTID");

//Line 961
        $pagenav = construct_page_nav($totalposts, "t-$threadid", "");

        if ($thread['lastpost'] > $bbuserinfo['lastvisit'])
        {

Then there's a couple mods in template pagenav this is what I did for the first page:
<if condition="$show['first']"><td class="alt1"><a class="smallfont" href="$address-1.html" title="$vbphrase[first_page] -

Do basically the same for last page and the next/previous links.
Template pagenav_pagelink has all the middle pages

This is it for tonight.... I'm done tinkering with this.... The breadcrumb is really the main thing I have left to do on my forum. Then hopefully somebody will help me with the step by step instructions.


All times are GMT. The time now is 11:03 PM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01116 seconds
  • Memory Usage 1,750KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (6)bbcode_code_printable
  • (2)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (3)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (10)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete