Results 1 to 15 of 15

vbadvanced dynamics is not redirected from the old domain to the new domain

This is a discussion on vbadvanced dynamics is not redirected from the old domain to the new domain within the General Discussion forums, part of the vBSEO SEO Plugin category; Hi all, i have a problem, i have changed the domain name some times ago, i have added in my ...

  1. #1
    Senior Member
    Real Name
    Riccardo
    Join Date
    Jun 2008
    Posts
    267
    Liked
    1 times

    vbadvanced dynamics is not redirected from the old domain to the new domain

    Hi all,
    i have a problem,
    i have changed the domain name some times ago, i have added in my ../forums/.htaccess file the redirect string for don't lose the old seoed links.
    These are the lines that i have addedd in my .htaccess, this is the main htaccess:
    Code:
    RewriteEngine on
    php_value upload_max_filesize 10M
    php_value post_max_size  10M
    php_value max_input_time 200
    php_value max_execution_time 200
    RewriteCond %{HTTP_HOST} ^old-forum.com$ [OR]
    RewriteCond %{HTTP_HOST} ^www.old-forum.com$
    RewriteRule ^(.*)$ "http\:\/\/www\.newforum\.it\/" [R=301,L]
    The old links are replaced, but the old link of my vbadvanced dynamics are not replaced , i have tryed to add the same strings in the ../dynamics/.htaccess file , but the pages and links are not replaced , i still see the old domain link in my browser.

    How can i solve this problem?
    This is the dynamics .htaccess file that now running on my dynamics folder:
    Code:
    Options +FollowSymlinks
    RewriteEngine On
    RewriteRule ^([a-zA-Z_0-9\-]+)/robots\.txt$ robots.txt [QSA,L]
    RewriteRule ^members/page([0-9]+).html$ index.php?page=$1 [QSA,L]
    RewriteRule ^whatsnew/entries/([0-9]+)/page([0-9]+).html$ browsecategory.php?do=newentries&cutoffdate=$1&page=$2 [QSA,L]
    RewriteRule ^whatsnew/entries/(([0-9]?|-)+/?)$ browsecategory.php?do=newentries&cutoffdate=$1 [QSA,L]
    RewriteRule ^whatsnew/posts/([0-9]+)/page([0-9]+).html$ browsecategory.php?do=newposts&cutoffdate=$1&page=$2 [QSA,L]
    RewriteRule ^whatsnew/posts/(([0-9]?|-)+/?)$ browsecategory.php?do=newposts&cutoffdate=$1 [QSA,L]
    RewriteRule ^whatspopular/([a-zA-Z_0-9\-]+)/$ browsecategory.php?do=popentries&orderby=$1 [QSA,L]
    RewriteRule ^members/([a-zA-Z_0-9\-]+)/page([0-9]+).html$ browsecategory.php?do=member&userrewrite=$1&page=$2 [QSA,L]
    RewriteRule ^members/(([a-zA-Z_0-9]|-)+/?)$ browsecategory.php?do=member&userrewrite=$1 [QSA,L]
    RewriteRule ^([a-zA-Z_0-9\-]+)/members/([a-zA-Z_0-9\-]+)/page([0-9]+).html$ browsecategory.php?userrewrite=$2&catrewrite=$1&page=$3 [QSA,L]
    RewriteRule ^([a-zA-Z_0-9\-]+)/members/(([a-zA-Z_0-9]|-)+/?)$ browsecategory.php?userrewrite=$2&catrewrite=$1 [QSA,L]
    RewriteRule ^([a-zA-Z_0-9\-]+)/(([a-zA-Z_0-9]|-)+)/$ showentry.php?entryrewrite=$2&catrewrite=$1 [QSA,L]
    RewriteRule ^([a-zA-Z_0-9\-]+)/([a-zA-Z_0-9\-]+)/page([0-9]+).html$ showentry.php?entryrewrite=$2&catrewrite=$1&page=$3 [QSA,L]
    RewriteRule ^([a-zA-Z_0-9\-]+)/([a-zA-Z_0-9\-]+)/epage([0-9]+).html$ showentry.php?entryrewrite=$2&catrewrite=$1&epage=$3 [QSA,L]
    RewriteRule ^([a-zA-Z_0-9\-]+)/page([0-9]+).html$ browsecategory.php?catrewrite=$1&page=$2 [QSA,L]
    RewriteRule ^([a-zA-Z_0-9\-]+)/?$ browsecategory.php?catrewrite=$1 [QSA,L]
    RewriteCond %{HTTP_HOST} ^old-forum.com$ [OR]
    RewriteCond %{HTTP_HOST} ^www.old-forum.com$
    RewriteRule ^(.*)$ "http\:\/\/www\.newforum\.it\/" [R=301,L]
    In red the strings that i have addedd in this htaccess file, anybody can suggest me a solution?

    Thanks

  2. #2
    Senior Member
    Real Name
    Riccardo
    Join Date
    Jun 2008
    Posts
    267
    Liked
    1 times
    I have forget,
    before upgrading to the new vbseo version, all the links it was redirected to the new domain, what's the problem?

  3. #3
    vBSEO Staff Oleg Ignatiuk's Avatar
    Real Name
    Oleg Ignatiuk
    Join Date
    Jun 2005
    Location
    Belarus
    Posts
    25,742
    Liked
    168 times
    You should move redirect rules to the top, right after "RewriteEngine on" line.

  4. #4
    Senior Member
    Real Name
    Riccardo
    Join Date
    Jun 2008
    Posts
    267
    Liked
    1 times
    I oleg,
    in the main .htaccess file only?
    Or in the dynamics too?
    It's ok like this:
    Code:
    RewriteEngine on
    RewriteCond %{HTTP_HOST} ^old-forum.com$ [OR]
    RewriteCond %{HTTP_HOST} ^www.old-forum.com$
    RewriteRule ^(.*)$ "http\:\/\/www\.newforum\.it\/" [R=301,L] 
    php_value upload_max_filesize 10M
    php_value post_max_size  10M
    php_value max_input_time 200
    php_value max_execution_time 200
    Thanks

  5. #5
    vBSEO Staff Oleg Ignatiuk's Avatar
    Real Name
    Oleg Ignatiuk
    Join Date
    Jun 2005
    Location
    Belarus
    Posts
    25,742
    Liked
    168 times
    It looks ok.

  6. #6
    Senior Member
    Real Name
    Riccardo
    Join Date
    Jun 2008
    Posts
    267
    Liked
    1 times
    Ok, i have added this edit in my main public_html folder, now i wait some hours for see if the edit will work again like before the upgrade to the new vbseo version.

  7. #7
    Senior Member
    Real Name
    Riccardo
    Join Date
    Jun 2008
    Posts
    267
    Liked
    1 times
    I have addedd the codes in the up of my htaccess, but again don't work.
    In the previous vbseo 3.2 the old domain was redirect without problem on the new one domain, without adding strings in the dynamic .htaccess , before worked only with the strings addedd in the public_html htaccess
    Code:
    RewriteCond %{HTTP_HOST} ^old-forum.com$ [OR]
    RewriteCond %{HTTP_HOST} ^www.old-forum.com$
    RewriteRule ^(.*)$ "http\:\/\/www\.newforum\.it\/" [R=301,L]
    but now on 3.3 i don't know why wont work

  8. #8
    vBSEO Staff Oleg Ignatiuk's Avatar
    Real Name
    Oleg Ignatiuk
    Join Date
    Jun 2005
    Location
    Belarus
    Posts
    25,742
    Liked
    168 times
    What exactly the URL (old and new) that you want to redirect?

  9. #9
    Senior Member
    Real Name
    Riccardo
    Join Date
    Jun 2008
    Posts
    267
    Liked
    1 times
    Hi Oleg,
    for example, i search with italian Google the phrase:
    "Guida avanzata Nod32 v.3" that is a guide that i have writed when my forum was hosted on the old domain.
    The first Result is the link on my old domain:

    Guida avanzata all'installazione e configurazione di Nod32 V. 3.00 ITA - Articoli-Software Upgrade

    But now if google don't decide to replace the old death links with the new one, is a problem without redirect.

    Tha same link but in the new domain is:
    Guida avanzata all'installazione e configurazione di Nod32 V. 3.00 ITA - Articoli-Software Upgrade

    This problem is the same on all the old domain link that are not redirect to the new one.
    But if i try to write the main old domain in my browser
    Software Upgrade Home i'm redirect succersfully to the new domain, i think that the problem is only in vbulletin advanced dynamic.

  10. #10
    vBSEO Staff Oleg Ignatiuk's Avatar
    Real Name
    Oleg Ignatiuk
    Join Date
    Jun 2005
    Location
    Belarus
    Posts
    25,742
    Liked
    168 times
    What is your .htaccess in dynamics/ folder ? Did you change it as described above?

  11. #11
    Senior Member
    Real Name
    Riccardo
    Join Date
    Jun 2008
    Posts
    267
    Liked
    1 times
    No i have changed only the .htaccess in my public_html folder , adding at the begin the code...... if i try to add that string
    Code:
    RewriteCond %{HTTP_HOST} ^bbd3-it.com$ [OR]
    RewriteCond %{HTTP_HOST} ^www.bbd3-it.com$
    RewriteRule ^(.*)$ "http\:\/\/www\.sfwupgrade\.it\/" [R=301,L]
    In my dynamics/.htaccess ,
    and anybody try to click on the old googled link will be redirected the the home page

    Before in 3.2 version , i don't have changed nothing in the dynamics/htaccess , i have changed only the public_html htaccess and it have worked without problems

  12. #12
    vBSEO Staff Oleg Ignatiuk's Avatar
    Real Name
    Oleg Ignatiuk
    Join Date
    Jun 2005
    Location
    Belarus
    Posts
    25,742
    Liked
    168 times
    Try to change rewrite rule (3rd line) in dynamics folder to:
    Code:
    RewriteRule ^(.*)$ http://www.sfwupgrade.it/$1 [R=301,L]

  13. #13
    Senior Member
    Real Name
    Riccardo
    Join Date
    Jun 2008
    Posts
    267
    Liked
    1 times
    ok, i'll try.
    The main htaccess(public_html) will rest like now?

  14. #14
    Senior Member
    Real Name
    Riccardo
    Join Date
    Jun 2008
    Posts
    267
    Liked
    1 times
    No, don't work,
    if i add the line in dynamics folder , the will be redirected to this link:
    Code:
    http://www.sfwupgrade.it/articoli-sicurezza-informatica-2/guida-avanzata-allinstallazione-e-configurazione-di-nod32-v-300-ita-24/
    But the correct link is:
    Code:
    http://www.sfwupgrade.it/dynamics/articoli-sicurezza-informatica-2/guida-avanzata-allinstallazione-e-configurazione-di-nod32-v-300-ita-24/
    In the first link not there's the dynamics folder and a 404 not found error is showed.

    But i don't understand why before this edit on my htaccess work and now in the vbseo new version not

  15. #15
    vBSEO Staff Oleg Ignatiuk's Avatar
    Real Name
    Oleg Ignatiuk
    Join Date
    Jun 2005
    Location
    Belarus
    Posts
    25,742
    Liked
    168 times
    Please open a ticket with ftp access to resolve that.

Similar Threads

  1. Replies: 1
    Last Post: 08-23-2008, 04:35 PM
  2. Addon domains are being redirected to main domain
    By Hayk in forum General Discussion
    Replies: 12
    Last Post: 04-03-2008, 02:33 PM
  3. vBadvanced in a sub-domain
    By TechGuy in forum General Discussion
    Replies: 4
    Last Post: 01-07-2008, 07:42 AM
  4. Replies: 2
    Last Post: 11-30-2006, 01:02 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
  •