Configuring different domains for each journal

Hi,

I have been working on an publishing company that wants to host several journals in OJS, but wants each one to have their own domain name. The idea is to convert this:

To:

I have been reading up on several discussions, (Each journal with its own domain name, Clear URL for index.php/index), and have done some of the basic configuration, e.g. writing down the individual base urls in config.inc.php, and adding the domains to apache, pointing them to the same directory. But i haven’t been able to configure the .htaccess file. So far i have this:

Removing www

RewriteCond %{HTTP_HOST} ^www.journal1.org [NC]
RewriteRule ^/(.*)$ https://journal1.org/$1 [R=301,L,NC]

RewriteCond %{SERVER_NAME} ^journal1.org
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^/(.*)$ /index.php/journal1/$1 [QSA,L]

But everytime i try to access journal1.org, i get the journal index page. I can access the journal by writing: https://journal1.org/index.php/journal1/, but the theme stylesheet isn’t loading. The admin before me had set it up, but a server update replaced the .htaccess file. How can this be done?