Hi rscafuro,
It seems that you have installed wordpress in “wordpress” folder
https://americanrenaissancemovie.com/wordpress/
But did not configured the index.php or .htaccess file correctly to load the site using https://americanrenaissancemovie.com/ instead of https://americanrenaissancemovie.com/wordpress/ .
You can login to the Dashboard at : https://americanrenaissancemovie.com/wordpress/wp-login.php
Please check the index.php file and add the folder name “wordpress” in the last line as below:
require( dirname( __FILE__ ) . ‘/wordpress/wp-blog-header.php’ );
OR
in .htaccess add “wordpress” as below:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /wordpress/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
Please note, that the both the above files should be at the level of “wordpress” folder.
Hope this can help you.