The site is installed in /current/ at the moment. Yes it could be an option to keep it there, with the url appering as ‘https://www.yukiskitchen.com/’.
At BlueHost, I deal with that (for Add-On Domains only) by going to cPanel and assigning that domain to that location. However, you might not be able to do that if that domain is your Primary Domain at your host, so here is “Plan B” if you would like to leave the installation right where it is:
# .htaccess main domain to subdirectory redirect
# Do not change this next line.
RewriteEngine on
# Change example.com to be your main domain.
RewriteCond %{HTTP_HOST} ^(www.)?example.com$
# Change 'subdirectory' to be the directory you will use for your main domain.
RewriteCond %{REQUEST_URI} !^/subdirectory/
# Don't change the following two lines.
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
# Change 'subdirectory' to be the directory you will use for your main domain.
RewriteRule ^(.*)$ /subdirectory/$1
# Change example.com to be your main domain again.
# Change 'subdirectory' to be the directory you will use for your main domain
# followed by / then the main file for your site, index.php, index.html, etc.
RewriteCond %{HTTP_HOST} ^(www.)?example.com$
## Use index.php for WordPress
#RewriteRule ^(/)?$ subdirectory/index.html [L]
RewriteRule ^(/)?$ subdirectory/index.php [L]
#
## note: Visitors to your Web site will not be able to tell
## your main domain is using a subdirectory, they will see
## the Web site address only as https://www.example.com/(prettylinks).
https://my.bluehost.com/cgi/help/347#redirect
Just before putting that htaccess in place in your root folder immediately preceding /current/, change both of your Dashboard ‘General’ settings to ‘https://www.yukiskitchen.com’. You might then also later need to do some additional updating in your database, but I think that should not be necessary.
note: Do a complete database backup prior to any and all of the above “just in case”!