• I’m hosting with Bluehost and trying to setup WP. In Step 4 of the detailed installation instructions, I’m supposed to upload the WP files to the ‘root directory’ on my server. But…I’m not sure exactly which one is the root. The very top folder in File Manager is /home/downpour, then under that is public_html, www, etc. Where exactly do the WP files go?

    I’ve done quite a bit of html editing but this hosting thing is a whole new deal!

    Thank you for your help!

Viewing 2 replies - 1 through 2 (of 2 total)
  • On your main registered domain, public_html is that domain’s web-root folder.

    Add-on domains, when you create them, will create their own folder under the public_html folder.

    On bluehost, I like to upload the wordpress zip file into the public_html folder, use the Extract File Contents, that extracts the files to public_html/wordpress, then I put the wp-config.php file in public_html/wordpress, navigate to https://www.sample.com/wordpress, answer the questions, login, goto Options-General, take the /wordpress off the end of the Blog address (URL) and then put an index.php file in public_html that is this:

    <?php
    /* Short and sweet */
    define('WP_USE_THEMES', true);
    require('./wordpress/wp-blog-header.php');
    ?>

    That allows you to access your blog at https://www.sample.com (your domain there of course).

    This particular setup is described at: https://codex.www.ads-software.com/Giving_WordPress_Its_Own_Directory

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Which is root directory – Bluehost’ is closed to new replies.