Results 1 to 15 of 15

User friendly urls, good idea or bad idea?

This is a discussion on User friendly urls, good idea or bad idea? within the General Discussion forums, part of the vBSEO SEO Plugin category; Hello, Some users ask me if it's possible to make some of the urls more user-friendly like the ones in ...

  1. #1
    Member
    Real Name
    Kanustep
    Join Date
    Mar 2007
    Posts
    73
    Liked
    0 times

    Question User friendly urls, good idea or bad idea?

    Hello,

    Some users ask me if it's possible to make some of the urls more user-friendly like the ones in Usercp.

    Instead of domain.com/forum/profile.php?do=customize have domain.com/forum/profile/customize.

    Are this a good idea or bad idea? What this can cause on SEO, on the server, on vbulletin, on vbseo, etc....?

    Thank you in advance.

  2. #2
    Senior Member
    Real Name
    Keith Cohen
    Join Date
    Jul 2005
    Location
    Raleigh, NC USA
    Posts
    6,147
    Liked
    13 times
    Not necessary, and will just add load to your server. It would be for decorative purposes only.

    I only rewrite URLs that the search engines can see.

  3. #3
    Junior Member
    Real Name
    pepe ramos
    Join Date
    Jun 2008
    Posts
    6
    Liked
    0 times

    Thumbs up Archie: User friendly urls, good idea or bad idea?

    Quote Originally Posted by Kanustep View Post
    Hello,

    Some users ask me if it's possible to make some of the urls more user-friendly like the ones in Usercp.

    Instead of domain.com/forum/profile.php?do=customize have domain.com/forum/profile/customize.

    Are this a good idea or bad idea? What this can cause on SEO, on the server, on vbulletin, on vbseo, etc....?

    Thank you in advance.
    Do it like this (friendly) - recommend you strongly

  4. #4
    Member
    Real Name
    Kanustep
    Join Date
    Mar 2007
    Posts
    73
    Liked
    0 times
    Why you recommend strongly? Any good experience?

  5. #5
    vBSEO.com Webmaster Mert Gökçeimam's Avatar
    Real Name
    Lizard King
    Join Date
    Oct 2005
    Location
    Istanbul, Turkey, Turkey
    Posts
    23,100
    Liked
    622 times
    Blog Entries
    4
    Personally i use them and my members love friendly urls for profile etc..
    Mert Gökçeimam / Crawlability Inc.

    vBSEO 3.6.0 Alpha Önizlemesi - Including Like Tree
    Unveiling the NEW vBSEO Sitemap Generator 3.0 - available NOW for vBSEO Customers!


    Twitter:@Depkac
    Personal Blog : Mert Gökçeimam

  6. #6
    Senior Member briansol's Avatar
    Real Name
    Brian
    Join Date
    Apr 2006
    Location
    Central CT, USA
    Posts
    6,981
    Liked
    8 times
    for the direct member page, like site.com/users/name/ YES, i use them.
    for anything else, like edit/customize profile, NO WAY

  7. #7
    Member
    Real Name
    Kanustep
    Join Date
    Mar 2007
    Posts
    73
    Liked
    0 times
    Mert Gökçeimam, archie and briansol any particular reason for the pros and the cons?

    We see alot of sites using user-friendly urls, in usuability is better for user to recognize the names and to remember it easly, and to make the navigation more easy. But what else?

  8. #8
    vBSEO.com Webmaster Mert Gökçeimam's Avatar
    Real Name
    Lizard King
    Join Date
    Oct 2005
    Location
    Istanbul, Turkey, Turkey
    Posts
    23,100
    Liked
    622 times
    Blog Entries
    4
    Personal opinion it is pretty easy to use a forum with friendly urls. I donot need to browse through control panel just to click a link. I can easily write the link to my browser and go to that page.

    I tried both with user friendly urls and not and it is obvious that my members loved the user friendly url format. I also tried to check it on perfonmance base and it is really hard to see any bad effect.
    Mert Gökçeimam / Crawlability Inc.

    vBSEO 3.6.0 Alpha Önizlemesi - Including Like Tree
    Unveiling the NEW vBSEO Sitemap Generator 3.0 - available NOW for vBSEO Customers!


    Twitter:@Depkac
    Personal Blog : Mert Gökçeimam

  9. #9
    Member
    Real Name
    Kanustep
    Join Date
    Mar 2007
    Posts
    73
    Liked
    0 times
    My work is mainly design, and in all our projects we use user-friendly links, users prefer that. However my concerns is in server load, does it take much on server Mert? Did you notice anything significant?

    Can I also ask how to you configure yours?

  10. #10
    vBSEO.com Webmaster Mert Gökçeimam's Avatar
    Real Name
    Lizard King
    Join Date
    Oct 2005
    Location
    Istanbul, Turkey, Turkey
    Posts
    23,100
    Liked
    622 times
    Blog Entries
    4
    These are the ones i use
    Code:
    // ozel mesajlar rewrite
    
    '^private\.php$' => 'ozelmesaj/'
    '^private\.php\?do=trackpm' => 'ozelmesaj/takip/'
    '^private\.php\?do=editfolders' => 'ozelmesaj/klasor-duzenle/'
    '^private\.php\?do=newpm' => 'ozelmesaj/yeni/'
    '^private\.php\?do=showpm&pmid=(\d+)$' => 'ozelmesaj/mesaj-$1/'
    '^private\.php\?folderid=(.+?)$' => 'ozelmesaj/$1/'
    
    
    // profil kismi
    '^profile\.php\?do=editsignature' => 'profil/imza/'
    '^profile\.php\?do=editoptions' => 'profil/secenekler/'
    '^profile\.php\?do=editprofilepic' => 'profil/profilresmi/'
    '^profile\.php\?do=editprofile' => 'profil/duzenle/'
    '^profile\.php\?do=editavatar' => 'profil/avatar/'
    '^profile\.php\?do=editpassword' => 'profil/sifre/'
    '^profile\.php\?do=editattachments' => 'profil/eklentiler/'
    '^profile\.php\?do=ignorelistlist' => 'profil/shitlist/'
    '^profile\.php\?do=customize' => 'profil/renkdegistirme/'
    '^profile\.php\?do=buddylist' => 'profil/arkadaslistesi/'
    '^profile\.php\?do=editusergroups' => 'profil/grup-uyelikleri/'
    I never faced any increase on server load with them.
    Mert Gökçeimam / Crawlability Inc.

    vBSEO 3.6.0 Alpha Önizlemesi - Including Like Tree
    Unveiling the NEW vBSEO Sitemap Generator 3.0 - available NOW for vBSEO Customers!


    Twitter:@Depkac
    Personal Blog : Mert Gökçeimam

  11. #11
    Senior Member
    Real Name
    Joseph Ward
    Join Date
    Jun 2005
    Posts
    23,845
    Liked
    36 times
    Blog Entries
    9
    I like using our Custom Redirects feature also for shortcuts to stuff located on the forum.

  12. #12
    Senior Member briansol's Avatar
    Real Name
    Brian
    Join Date
    Apr 2006
    Location
    Central CT, USA
    Posts
    6,981
    Liked
    8 times
    hey mert, you got a typo...


    '^profile\.php\?do=ignorelistlist' => 'profil/shitlist/'


    listlist

  13. #13
    Senior Member briansol's Avatar
    Real Name
    Brian
    Join Date
    Apr 2006
    Location
    Central CT, USA
    Posts
    6,981
    Liked
    8 times
    also, you're missing the "to" option... for links that directly let you pm a member from profile, etc.

    ie, i have:

    '^private\.php\?do=newpm$' => 'pm/new/'
    '^private\.php\?do=newpm&u=(\d+)' => 'pm/new/to-$1/'

  14. #14
    vBSEO.com Webmaster Mert Gökçeimam's Avatar
    Real Name
    Lizard King
    Join Date
    Oct 2005
    Location
    Istanbul, Turkey, Turkey
    Posts
    23,100
    Liked
    622 times
    Blog Entries
    4
    Quote Originally Posted by briansol View Post
    hey mert, you got a typo...


    '^profile\.php\?do=ignorelistlist' => 'profil/shitlist/'


    listlist
    Thanks for reminding that
    Mert Gökçeimam / Crawlability Inc.

    vBSEO 3.6.0 Alpha Önizlemesi - Including Like Tree
    Unveiling the NEW vBSEO Sitemap Generator 3.0 - available NOW for vBSEO Customers!


    Twitter:@Depkac
    Personal Blog : Mert Gökçeimam

  15. #15
    Member
    Real Name
    Kanustep
    Join Date
    Mar 2007
    Posts
    73
    Liked
    0 times
    Thank you Mert, my concern was always the server load, I never had much problems with that except now that after a upgrade to php5 and mysql5 a client's site zombify some mysql queries and I'm on a VPS.

    Do you have any concerns on loading vBulletin board or the site after changing the urls?

Similar Threads

  1. is it good idea to stop crawling some forums?
    By Seleno in forum General Discussion
    Replies: 34
    Last Post: 05-29-2008, 06:26 PM
  2. is this a good idea or a bad idea?
    By butty in forum General Discussion
    Replies: 2
    Last Post: 05-15-2007, 04:15 PM
  3. are 301's really a good idea? i don't think so.
    By sde in forum General Discussion
    Replies: 3
    Last Post: 05-25-2006, 02:19 PM
  4. is linkwizard.net good or bad idea ?
    By jimmy in forum Link Building
    Replies: 2
    Last Post: 03-10-2006, 04:34 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
  •