HOW TO MOVE WORDPRESS FROM ROOT DIRECTORY TO SUBDIRECTORY? Print

  • 40

 

Sometimes you wish to install WordPress in root (wwwroot/public_html) directory, but you do want to filled up the root directory with WordPress files and folders. In this situation, you can give WordPress website it’s own directory so that WordPress will be installed in subdirectory, but your website will be served from the root folder.

In more simple words, install WordPress in example.com/mywebsite directory and still you can access your website with URL http://mywebsite.com. Let’s see how we can achieve this.

  1. First create folder where you want to install WordPress. In this tutorial, we will use /mywebsite.

  2. Now, at WordPress dashboard, navigate to Settings >> General Settings.

    General Settings


  3. In the box WordPress address (URL), change the address to new location of your main WordPress core files. For example: http://example.com/mywebsite.
  4. In the box Site address (URL), change the address to the root directory URL. For example: http://example.com and click on Save Changes.

  5. Move your WordPress core files to the new location (/mywebsite folder).

  6. Now COPY (DO NOT MOVE) index.php and .htaccess files from /mywebsite folder to root directory, i.e. wwwroot/public_html.

  7. By default, .htaccess file would be invisible. Hence, set FTP client to show hidden files. If you are using cPanel file manager, check the show hidden files checkbox while you access file manager. Additionally, if you do not use pretty permalinks, then you may not have a .htaccess file.

    cPanel File Manager

  8. Now, open root directory's index.php file in a text editor. Replace line

    require( dirname( __FILE__ ) . '/wp-blog-header.php' );

    with following line, placing your subdirectory name as follows.

    require( dirname( __FILE__ ) . '/mywebsite/wp-blog-header.php' );
  9. Browse and login to new WordPress dashboard. http://example.com/mywebsite/wp-admin/

  10. If you have set up Permalinks, update the Permalink structure. At WordPress dashboard, navigate to Settings >> Permalinks Settingscheck the checkbox of permalinks setting you set previously and save the changes.

Was this answer helpful?

« Back

Powered by WHMCompleteSolution