Viewing 2 replies - 1 through 2 (of 2 total)
  • This document explains how to move WordPress within your site; but I don’t think that’s entirely what you want to do, is it?

    If you want to keep WordPress in it’s own directory (/wordpress/), but have it available from the root of your domain, you can make an index.php at the root of your domain that looks like this:
    <?php
    /* Short and sweet */
    define('WP_USE_THEMES', true);
    require('./wordpress/wp-blog-header.php');
    ?>

    This will allow visitors to https://www.pearlillusions.org/ to see the contents of /wordpress/. All links will then take them to https://www.pearlillusions.org/wordpress/

    Thread Starter slashbabe247

    (@slashbabe247)

    thanks I will have to try that later

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘My address to my blog is different from everyone else’s, Help!’ is closed to new replies.