No they have a separate directory and database for each one – the original blog is in
https://health-goji-juice.com/wordpress/
the url setting is https://health-goji-juice.com/wordpress/
the new one I’ve created is in
https://health-goji-juice.com/home-business/
the URL setting is https://health-goji-juice.com/home-business/
here is what the htaccess file looks like for the new blog in
https://health-goji-juice.com/home-business/
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /wordpress/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
#RewriteRule . /wordpress/index.php [L]
RewriteRule . index.php [L]
</IfModule>
# END WordPress