Welcome to Centmin Mod Community
Become a Member

Wordpress Wordpress Subdirectory under main wordpress domain

Discussion in 'Blogs & CMS usage' started by Inforit, Sep 10, 2022.

  1. Inforit

    Inforit Premium Member Premium Member

    52
    15
    8
    Jul 30, 2014
    Ratings:
    +22
    Local Time:
    3:22 PM
    nginx/1.7.3
    MariaDB 5.5
    Hi,

    So I have a wordpress under domain.com and now need to add another wordpress install under domain.com/blog2

    I have followed the instructions for how to move wordpress subdirectory
    and have got it all to work except that when I go to a post url, ie domain.com/blog2/1/hello-world/ it calls the main wordpress and sends a not found error as that post is on the subdirectory not the root domain wordpress.

    I think I am missing something else in the nginx conf any tips

    Thanks

     
  2. Inforit

    Inforit Premium Member Premium Member

    52
    15
    8
    Jul 30, 2014
    Ratings:
    +22
    Local Time:
    3:22 PM
    nginx/1.7.3
    MariaDB 5.5

    Solved it, I was missing copying location into the root domain .conf file

    Code:
    location /blog2 {
      include /usr/local/nginx/conf/503include-only.conf;
      try_files $uri $uri/ /blog2/index.php?q=$uri&$args;
     
  3. eva2000

    eva2000 Administrator Staff Member

    58,904
    12,490
    113
    May 24, 2014
    Brisbane, Australia
    Ratings:
    +19,122
    Local Time:
    12:22 AM
    Nginx 1.31.x
    MariaDB 10.x/11.4+/12.3+
    Great to see you figured it out :)
     
  4. quicksalad

    quicksalad Member

    228
    13
    18
    May 31, 2015
    Ratings:
    +20
    Local Time:
    7:52 PM
    Any guide to install another Wordpress on subfolder /blog2?
    My case is, I have existing live WP on domain.com, I want another WP installation under domain.com/blog2. Will it overwrite the existing public folder on my existing live domain when using the option 22?
    Any tips and advise appreciated. Thanks
     
  5. eva2000

    eva2000 Administrator Staff Member

    58,904
    12,490
    113
    May 24, 2014
    Brisbane, Australia
    Ratings:
    +19,122
    Local Time:
    12:22 AM
    Nginx 1.31.x
    MariaDB 10.x/11.4+/12.3+
  6. quicksalad

    quicksalad Member

    228
    13
    18
    May 31, 2015
    Ratings:
    +20
    Local Time:
    7:52 PM