Results 1 to 14 of 14

Wordpress & Vbseo - same domain

This is a discussion on Wordpress & Vbseo - same domain within the General Discussion forums, part of the vBulletin SEO Discussion category; Hi. I have vbulletin with Vbseo installed on domain root ( www.mysite.com ) and I would like to install Wordpress ...

  1. #1
    wac
    wac is offline
    Senior Member
    Real Name
    toto
    Join Date
    Apr 2009
    Posts
    134
    Liked
    0 times

    Wordpress & Vbseo - same domain

    Hi. I have vbulletin with Vbseo installed on domain root (www.mysite.com) and I would like to install Wordpress on "www.mysite.com/blog". I don't want Wordpress to have any conflicts with Vbseo rewrite rules and such. Is this an easy thing to do? What do I need to watch out for? I'd like Wordpress with friendly urls, permalinks, etc. so... Will there be any trouble with Vbseo? Any steps to follow so I can do it correctly? I was thinking to run the installation through Fantastico. Thanks.

  2. #2
    Senior Member
    Real Name
    Michael Biddle
    Join Date
    Jan 2007
    Location
    Southern California
    Posts
    7,097
    Liked
    4 times
    Hello,

    Add a .htaccess file into the blog folder with RewriteEngine Off inside of it.
    The Forum Hosting - Forum Hosting from the Forum Experts

  3. #3
    wac
    wac is offline
    Senior Member
    Real Name
    toto
    Join Date
    Apr 2009
    Posts
    134
    Liked
    0 times
    Quote Originally Posted by Michael Biddle View Post
    Hello,

    Add a .htaccess file into the blog folder with RewriteEngine Off inside of it.
    Wouldn't that turn off friendly urls for the blog? I need friendly urls. I assume Wordpress has its own .htaccess too.

  4. #4
    Senior Member
    Real Name
    Michael Biddle
    Join Date
    Jan 2007
    Location
    Southern California
    Posts
    7,097
    Liked
    4 times
    It should not affect it then. The rewrites will use that particular .htaccess.
    The Forum Hosting - Forum Hosting from the Forum Experts

  5. #5
    vBSEO Staff Brian Cummiskey's Avatar
    Real Name
    Brian Cummiskey
    Join Date
    Jul 2009
    Location
    btwn NYC and Boston
    Posts
    12,782
    Liked
    648 times
    Blog Entries
    2
    Right, wordpress's htaccess file will over-ride anything below it. You won't have problems with this setup.

    If you do have issues, it will be before you enable permalinks in wordpress and set up the htaccess file. In that case, you can start with mike's suggestion of turning it off until you have wordpres ready to go to replace it.
    Brian Cummiskey / Crawlability Inc.
    vBSEO 3.6.0 GOLD Released!
    Unveiling the NEW vBSEO Sitemap Generator 3.0. - available NOW for vBSEO Customers!


  6. #6
    Senior Member
    Real Name
    Chris
    Join Date
    Aug 2005
    Location
    North Carolina
    Posts
    358
    Liked
    9 times
    So I have wordpress in the domain.com and the forums in the /forums/ folder.

    Should I have the forums with rewrite off?
    It now cause a loop for my Admin folder.

  7. #7
    vBSEO Staff Brian Cummiskey's Avatar
    Real Name
    Brian Cummiskey
    Join Date
    Jul 2009
    Location
    btwn NYC and Boston
    Posts
    12,782
    Liked
    648 times
    Blog Entries
    2
    Having an htaccess folder in the forums folder will over-ride the root rules from wordpress.

    If you renamed your admincp folder for security, make sure your htaccess for vbseo is updated to reflect that name change as well.
    Brian Cummiskey / Crawlability Inc.
    vBSEO 3.6.0 GOLD Released!
    Unveiling the NEW vBSEO Sitemap Generator 3.0. - available NOW for vBSEO Customers!


  8. #8
    Senior Member
    Real Name
    Chris
    Join Date
    Aug 2005
    Location
    North Carolina
    Posts
    358
    Liked
    9 times
    I changed my htaccess, but I still have that issue.

  9. #9
    vBSEO.com Webmaster Mert Gökçeimam's Avatar
    Real Name
    Lizard King
    Join Date
    Oct 2005
    Location
    Istanbul, Turkey, Turkey
    Posts
    22,367
    Liked
    542 times
    Blog Entries
    4
    Hello Chris ,

    On which domain do you have this error and can you post both your root and forums folder .htaccess content . If you have restricted access to your admincp folder using .htaccess (Auth directives), please check your apache configuration: having "ErrorDocument 401 401.shtml" directive in httpd.conf requires that "401.shtml" file exists. You should create one if it doesn't to solve the problem.
    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

  10. #10
    Senior Member
    Real Name
    Chris
    Join Date
    Aug 2005
    Location
    North Carolina
    Posts
    358
    Liked
    9 times
    gunandgame.com is the domain

    here is the root htaccess
    # BEGIN WordPress
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    </IfModule>

    # END WordPress

    Here is the forums htaccess
    # Comment the following line (add '#' at the beginning)
    # to disable mod_rewrite functions.
    # Please note: you still need to disable the hack in
    # the vBSEO control panel to stop url rewrites.
    RewriteEngine On

    # Some servers require the Rewritebase directive to be
    # enabled (remove '#' at the beginning to activate)
    # Please note: when enabled, you must include the path
    # to your root vB folder (i.e. RewriteBase /forums/)
    RewriteBase /forums/

    RewriteCond %{HTTP_HOST} !^www\.gunandgame\.com
    RewriteRule (.*) http://www.gunandgame.com/forums/$1 [L,R=301]

    RewriteRule ^((urllist|sitemap_).*\.(xml|txt)(\.gz)?)$ vbseo_sitemap/vbseo_getsitemap.php?sitemap=$1 [L]

    RewriteCond %{REQUEST_URI} !(acp/|modcp/|cron|vbseo_sitemap)
    RewriteRule ^((archive/)?(.*\.php(/.*)?))$ vbseo.php [L,QSA]

    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteCond %{REQUEST_FILENAME} !/(acp|modcp|clientscript|cpstyles|images)/
    RewriteRule ^(.+)$ vbseo.php [L,QSA]

  11. #11
    Senior Member
    Real Name
    Chris
    Join Date
    Aug 2005
    Location
    North Carolina
    Posts
    358
    Liked
    9 times
    Mert - you hit on the subject , as I have the htaccess password restricted.

  12. #12
    vBSEO.com Webmaster Mert Gökçeimam's Avatar
    Real Name
    Lizard King
    Join Date
    Oct 2005
    Location
    Istanbul, Turkey, Turkey
    Posts
    22,367
    Liked
    542 times
    Blog Entries
    4
    Is the issue fixed after creating 401.shtml file ?
    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

  13. #13
    Senior Member MissKalunji's Avatar
    Real Name
    Mj
    Join Date
    Mar 2006
    Location
    Canada
    Posts
    207
    Liked
    2 times
    I'm having similar issue issue.

    Now that I've enabled permalink and changed uploaded htaccess and when i try to access my admincp it brings me back to the blog with a 404 error message

  14. #14
    vBSEO Staff Andrés Durán Hewitt's Avatar
    Real Name
    Andrés Durán
    Join Date
    Jul 2009
    Location
    Costa Rica
    Posts
    3,152
    Liked
    371 times
    Blog Entries
    1
    Hello,

    Are you using WordPress on the same folder the forum is located at?.
    Andrés Durán / Crawlability Inc.
    ˇvBSEO 3.6.0 GOLD Liberado!
    Inaugurando el NUEVO vBSEO Sitemap Generator 3.0. - ˇAHORA disponible para Clientes de vBSEO!

    Síguenos en: Facebook | Síguenos en: Twitter


Similar Threads

  1. Wordpress and Vbseo.
    By wac in forum Troubleshooting
    Replies: 3
    Last Post: 06-19-2009, 04:57 AM
  2. Wordpress ve Vbseo
    By danMarquer in forum Türkçe
    Replies: 3
    Last Post: 03-12-2009, 01:30 PM
  3. Wordpress and vBSEO
    By Ramses2 in forum General Discussion
    Replies: 1
    Last Post: 03-07-2009, 06:03 AM
  4. Wordpress & vBseo
    By jarod1981® in forum Custom Rewrite Rules
    Replies: 2
    Last Post: 02-10-2009, 09:04 AM
  5. vb + vbSEo + Wordpress
    By Ky! in forum Deutsch
    Replies: 10
    Last Post: 07-04-2008, 10:56 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
  •