Hi Dale,
So I found an AddHandler line (at the bottom of the htaccess text below) and commented it out with no change, then commented out the line after, no change, and then the whole <if define SSL> section, all with the same result as before. Then I changed the name of the file, and the home page did come up, but when trying to view any other page, I got a 404 page not found error.
Also, and not previously mentioned by me, the domain does have an SSL license assigned to it, but I did not indicate that during the restoration process. That is I didn't specify https in the new domain structure. Perhaps this is my problem, and I should try again?
Thanks for any additional guidance you can provide.
-Jason
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . index.php [L]
</IfModule>
# END WordPress
# php72-cgi enabler [domain has private ssl]
<IfDefine !SSL>
Action phpCGI /cgi-bin/php-cgi
</IfDefine>
# for PHP7-CGI
AddHandler php-cgi .php
Action php-cgi /cgi-bin/php-cgi
# for php and ssl
#<IfDefine SSL>
#AddHandler php-cgi .php
# Action php-cgi https://sharonpasterart.com/cgi-bin/php-cgi
#</IfDefine>