Page 1 of 2 1 2 LastLast
Results 1 to 15 of 17

Allowing for .com and .net?

This is a discussion on Allowing for .com and .net? within the General Discussion forums, part of the vBSEO SEO Plugin category; Before I installed vbseo our forums could be accessed via .com or .net. This worked great because we have a ...

  1. #1
    Member
    Real Name
    Chris Raymond
    Join Date
    Nov 2007
    Posts
    35
    Liked
    0 times

    Allowing for .com and .net?

    Before I installed vbseo our forums could be accessed via .com or .net. This worked great because we have a couple moderators that have one domain blocked at work and use the other. When I installed vbseo it started forwarding the .net requests to .com in the forums, the rest of the site works fine. Can I change it so that it doesn't do that?

  2. #2
    Senior Member
    Real Name
    Keith Cohen
    Join Date
    Jul 2005
    Location
    Raleigh, NC USA
    Posts
    6,147
    Liked
    13 times
    Having multiple domains pointing to the same content is bad for SEO, which is why vBSEO uses the Forum URL as defined in your vBulletin Options when building URLs.

  3. #3
    Member
    Real Name
    Chris Raymond
    Join Date
    Nov 2007
    Posts
    35
    Liked
    0 times
    Okay, I can understand that. But we need to keep our moderators connected. Does this mean we have to choose one or the other? There is no work around for this?

  4. #4
    Senior Member briansol's Avatar
    Real Name
    Brian
    Join Date
    Apr 2006
    Location
    Central CT, USA
    Posts
    6,981
    Liked
    8 times
    having 2 domains to one thing is really a bad idea. you'll get duplicate content penalties.

    if they are blocked at work, teach them how to use a proxy.

    a neat trick is to use the translator from a language to english.

    ie,

    Translated version of http://www.vbseo.com/

    translated from french to english, everything is in english

  5. #5
    Member
    Real Name
    Chris Raymond
    Join Date
    Nov 2007
    Posts
    35
    Liked
    0 times
    So I need to bring this back up... my moderator works at a financial company that doesn't allow proxies and we have not found a way to get him access to the site - trust me, we've tried everything. The translated version above is blocked too.

    I'm willing to take the "duplicate content penalty" for having 2 domains pointing to the same site/content. I just need to do something to grant him access to the site. He's our only Super Moderator/Admin and we really need him to access the site during the day.

    Just tell me how I can make this happen. The domain being used right now is a ".com" and we would like to make the ".net" version available for him to use like we had in the past. Thanks.

  6. #6
    Senior Member briansol's Avatar
    Real Name
    Brian
    Join Date
    Apr 2006
    Location
    Central CT, USA
    Posts
    6,981
    Liked
    8 times
    tell him to get a new job. lol

    it's only a matter of time before they block the .net version too....

  7. #7
    Senior Member
    Real Name
    Keith Cohen
    Join Date
    Jul 2005
    Location
    Raleigh, NC USA
    Posts
    6,147
    Liked
    13 times
    vBSEO uses the Forum URL as defined in your vBulletin Options to create URLs.

  8. #8
    Member
    Real Name
    Chris Raymond
    Join Date
    Nov 2007
    Posts
    35
    Liked
    0 times
    Quote Originally Posted by briansol View Post
    tell him to get a new job. lol

    it's only a matter of time before they block the .net version too....
    He's been using the .net version for 2 years now with no problem.

  9. #9
    Member
    Real Name
    Chris Raymond
    Join Date
    Nov 2007
    Posts
    35
    Liked
    0 times
    Quote Originally Posted by Keith Cohen View Post
    vBSEO uses the Forum URL as defined in your vBulletin Options to create URLs.
    So is there absolutely no work around for this? I basically either have to use vbseo or uninstall it to achieve what I'm trying to do?

  10. #10
    Senior Member briansol's Avatar
    Real Name
    Brian
    Join Date
    Apr 2006
    Location
    Central CT, USA
    Posts
    6,981
    Liked
    8 times
    correct. vbseo is designed for ONE url.

  11. #11
    Member
    Real Name
    Chris Raymond
    Join Date
    Nov 2007
    Posts
    35
    Liked
    0 times
    So what would happen if I go in and deactivate this plugin? Would all of the links that point to the rewritten pages break? For example, if someone posted a link in the forums that uses the link structure vbseo creates will that link now be broken?

  12. #12
    Senior Member
    Real Name
    Joseph Ward
    Join Date
    Jun 2005
    Posts
    23,845
    Liked
    36 times
    Blog Entries
    9
    If you remove vBSEO, you will need to setup some reverse .htaccess 301 redirects, to direct back to the original versions.

  13. #13
    Senior Member KW802's Avatar
    Real Name
    Kevin
    Join Date
    Jan 2006
    Posts
    163
    Liked
    0 times
    Quote Originally Posted by Joe Ward View Post
    If you remove vBSEO, you will need to setup some reverse .htaccess 301 redirects, to direct back to the original versions.
    You wouldn't happen to have an example .htaccess file that does that?

  14. #14
    Senior Member
    Real Name
    Keith Cohen
    Join Date
    Jul 2005
    Location
    Raleigh, NC USA
    Posts
    6,147
    Liked
    13 times
    Here are a few to get you started, if you are using the default URL formats. Adjust the /forums/ path as needed.

    The member profile one will be "iffy" since it's using usernames, and we all know the issues surrounding usernames with special characters. If you were using a Member Profile URL Format that included the userid, then another redirect could be used and it would be 100% accurate.

    I assume that the threads are the primary thing you want to redirect anyway.
    Code:
     
    Showthread:
    RewriteRule ^[^/]+/([0-9]+)-.+.html$ /forums/showthread.php?t=$1 [L,R=301] 
     
    Member Profiles:
    RewriteRule ^members/.+-([0-9]+)\.html$ /forums/member.php?u=$1 [L,R=301] 
     
    Member List:
    RewriteRule ^members/list/index([0-9]+)\.html$ /forums/memberlist.php?page=$1 [L,R=301]
    RewriteRule ^members/list/(\w)([0-9]+)\.html$ /forums/memberlist.php?ltr=$1&page=$2 [L,R=301]
    RewriteRule ^members/list/$ /forums/memberlist.php [L,R=301] 
     
    Attachments:
    RewriteRule ^attachments/[^/]+/([0-9]+)-.+$ /forums/attachment.php?attachmentid=$1&%{QUERY_STRING} [L,R=301]
     
    Posts:
    RewriteRule ^([0-9]+)-post([0-9]+)\.html$ /forums/showpost.php?p=$1&postcount=$2 [L,R=301]

  15. #15
    Senior Member KW802's Avatar
    Real Name
    Kevin
    Join Date
    Jan 2006
    Posts
    163
    Liked
    0 times
    Quote Originally Posted by Keith Cohen View Post
    Here are a few to get you started, if you are using the default URL formats. Adjust the /forums/ path as needed.
    Thanks.

Page 1 of 2 1 2 LastLast

Similar Threads

  1. Politics360.org .net vbulletin license and more.
    By FightRice in forum Forum Marketplace
    Replies: 0
    Last Post: 01-31-2007, 03:27 AM

Posting Permissions

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