Support » Fixing WordPress » Redirect sub-blogs to parent blog within same domain

  • I currently have three blogs on one domain, one at the root and two others in subdirectories:

    http://rhiannonpaine.com
    http://rhiannonpaine.com/crooks/
    http://rhiannonpaine.com/mini/

    I want to close down the blogs in the subdirectories and redirect all traffic so that visitors using bookmarks always seamlessly end up in the parent directory blog. (I’ve already copied all posts to the parent blog.)

    I’ve read several other posts about editing the .htaccess file to redirect traffic but so far nothing I’ve tried has worked.

    Here is what is currently in one subdirectory blog’s .htaccess file:

    AddHandler php-cgi .php
    Action php-cgi /cgi-bin/php5
    
    # BEGIN WordPress
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /crooks/
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /crooks/index.php [L]
    </IfModule>
    
    # END WordPress

    I’m not well versed in WordPress so specific directions are very much appreciated.

  • The topic ‘Redirect sub-blogs to parent blog within same domain’ is closed to new replies.