– I added this:
define(‘WP_HOME’,’https://samtheblog.com’);
define(‘WP_SITEURL’,’https://samtheblog.com’);
but with my website to the wp-config.php to make sure URL is correct
– I can delete the .htaccess file and just create a new one but that didn’t work. When I downloaded wordpress it didn’t come with one so I just copy and pasted this in a file I named .htaccess:
# 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
– Tried reinstalling a few times
– Tried editing the PHP memory limit in config as well
None of this worked ??