@ ipstenu
I managed to solve the above mentioned issue. Because I created subdomains through cPanel it created an empty install of WP.
Still have another challenge though: my htaccess rules don’t redirect correctly. I followed the exact steps indicated here, but it still redirects to the main domain instead of the various subdirectories.
This is what my .htaccess looks like:
#Subdomains
RewriteCond %{HTTP_HOST} ^alledagenitalie.deliciousnature.com [OR]
RewriteCond %{HTTP_HOST} ^www.alledagenitalie.deliciousnature.com
RewriteRule ^(.*)$ https://deliciousnature.com/alledagenitalie/$1 [R=301,L]
RewriteCond %{HTTP_HOST} ^lozaff.deliciousnature.com [OR]
RewriteCond %{HTTP_HOST} ^www.lozaff.deliciousnature.com
RewriteRule ^(.*)$ https://deliciousnature.com/lozaff/$1 [R=301,L]
RewriteCond %{HTTP_HOST} ^italianfood.deliciousnature.com [OR]
RewriteCond %{HTTP_HOST} ^www.italianfood.deliciousnature.com
RewriteRule ^(.*)$ https://deliciousnature.com/italianfood/$1 [R=301,L]
RewriteCond %{HTTP_HOST} ^yogaholidays.deliciousnature.com [OR]
RewriteCond %{HTTP_HOST} ^www.yogaholidays.deliciousnature.com
RewriteRule ^(.*)$ https://deliciousnature.com/yogavakanties/$1 [R=301,L]
RewriteCond %{HTTP_HOST} ^gastronomicholidays.deliciousnature.com [OR]
RewriteCond %{HTTP_HOST} ^www.gastronomicholidays.deliciousnature.com
RewriteRule ^(.*)$ https://deliciousnature.com/culinairevakanties/$1 [R=301,L]
# BEGIN W3TC Browser Cache
<IfModule mod_deflate.c>
<IfModule mod_headers.c>
Header append Vary User-Agent env=!dont-vary
</IfModule>
AddOutputFilterByType DEFLATE text/css text/x-component application/x-javascript application/javascript text/javascript text/x-js text/html text/richtext image/svg+xml text/plain text/xsd text/xsl text/xml image/x-icon application/json
<IfModule mod_mime.c>
# DEFLATE by extension
AddOutputFilter DEFLATE js css htm html xml
</IfModule>
</IfModule>
# END W3TC Browser Cache
# BEGIN WordPress
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
# add a trailing slash to /wp-admin
RewriteRule ^([_0-9a-zA-Z-]+/)?wp-admin$ $1wp-admin/ [R=301,L]
RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^ - [L]
RewriteRule ^([_0-9a-zA-Z-]+/)?(wp-(content|admin|includes).*) $2 [L]
RewriteRule ^([_0-9a-zA-Z-]+/)?(.*.php)$ $2 [L]
RewriteRule . index.php [L]
# END WordPress
How now do I get the old URLs to redirect properly to the new ones (those in subdirectories)?