• Resolved interactivewest

    (@interactivewest)


    I recently installed WordPress Version 3.0.1 on our server to subdomain – Alumni.JaywalkerLodge.com. The main domain is hosted at WebHost4Life.com. I added Alumni.JaywalkerLodge.com to point to our server. I can do a ping and Network Lookup offsite and see that traffic is pointed to our server. I can also access Admin Control Panel for WordPress. But I cannot see the main login page. I have default setting set for Permalinks.

    In researching this on Support Forum Posts I have seen a number of other posts similar to this issue with the case closed and no resolution detailed. I believe the issue has to do with the .htaccess file.

    Here’s copy of info in .htaccess file:

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

    # END WordPress

    Any suggestions on edits to .htaccess file?

Viewing 1 replies (of 1 total)
  • Thread Starter interactivewest

    (@interactivewest)

    Issue has been resolved. Server admin viewed index.php file that we uploaded that contained “Silence is Golden” commented out thus generating a blank page. I downloaded latest version 3.0.1 and copied coding from index.php file:

    <?php
    /**
    * Front to the WordPress application. This file doesn’t do anything, but loads
    * wp-blog-header.php which does and tells WordPress to load the theme.
    *
    * @package WordPress
    */

    /**
    * Tells WordPress to load the WordPress theme and output it.
    *
    * @var bool
    */
    define(‘WP_USE_THEMES’, true);

    /** Loads the WordPress Environment and Template */
    require(‘./wp-blog-header.php’);
    ?>

    That worked.

Viewing 1 replies (of 1 total)
  • The topic ‘htaccess issue with subdomain’ is closed to new replies.