Viewing 5 replies - 1 through 5 (of 5 total)
  • Did you move or copy the index.php and .htaccess files to the domain root folder?

    Thread Starter davesnothere

    (@davesnothere)

    Copied.

    The index.php in wordpress has:
    require('./wp-blog-header.php');
    and the one in the root has:
    require('./wp/wp-blog-header.php');

    .htaccess in WP and in root (yes, they’re the same and ‘wp’ is the correct dir name:

    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /wp/
    RewriteRule ^index\.php$ - [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d

    Last, General Settings are:
    ‘WP Address’ http://gen.macunboxed.com/wp
    ‘Site Address’ http://gen.macunboxed.com

    Try:

    # BEGIN WordPress
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /wordpress/
    RewriteRule ^index\.php$ - [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /wordpress/index.php [L]
    </IfModule>
    # END WordPress
    Thread Starter davesnothere

    (@davesnothere)

    Hooray!!!

    That did it. 100 internets for you today.

    Glad I could help 🙂

Viewing 5 replies - 1 through 5 (of 5 total)

The topic ‘Problems getting subdirectory install working’ is closed to new replies.