• Resolved hieu.nguyen

    (@ndh611)


    Hello there,

    I have followed this article: https://codex.wordpress.org/Giving_WordPress_Its_Own_Directory

    And my site can run successfully with the root domain, and wp is nicely put in a sub-folder.

    I need to do some modifications to .htaccess (security stuff). The question is: for now I have 2 .htacess files, one in the root folder, and one in the sub-folder.

    Do I update BOTH of them? Or just 1 of them, in that case which one?

    Thank you,

Viewing 6 replies - 1 through 6 (of 6 total)
  • Hi,

    Apache uses the most specific .htaccess to the resource being requested. This means that, for accessing files in /public_html/wordpress/, /public_html/wordpress/.htaccess will be used. Access to /public_html/anything will use /public_html/.htaccess.

    In your case, if you wish to make changes in main website, then you should make changes in /public_html/.htaccess.

    If you wish to make changes in WordPress sub folder, then you should make changes in /public_html/wordpress/.htaccess

    Thanks,

    Thread Starter hieu.nguyen

    (@ndh611)

    Thanks for replying.

    May be you misunderstood me. The WP is stored in a sub folder, for example public_html/wp/

    However it’s still accessible from http://www.domain.com (not domain.com/wp/) following that link I gave above (WP Codex).

    The article requires us to make a copy of index.php and .htaccess and copy to root folder, so 2 identical .htaccess.

    Now my problem is I don’t know which one is the one that I should work with to enhance my security.

    Hi,

    Since your WordPress website is stored at subfolder, you will have to make changes in /public_html/wp/.htaccess.

    Thanks,

    Do I update BOTH of them? Or just 1 of them, in that case which one?

    The two .htaccess files in question here are not always mutually exclusive. The one in the WordPress installation’s own sub-folder is where all WordPress-related things for that particular site should go, but everything there is still subject to whatever might first be in public_html. So, I have some security measures in place in public_html to keep certain requests from ever even getting to any of my several WordPress installations in their respective sub-folders. As far as I know, however, there is no harm in having one or more snippets in both places (even if unnecessary).

    Thread Starter hieu.nguyen

    (@ndh611)

    Thanks guys!!! very clear.

    Thread Starter hieu.nguyen

    (@ndh611)

    Close topic!

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Running wordpress in a sub-directory, modifications to htaccess’ is closed to new replies.