.htaccess changes are not allowing admin login
-
Installing the plugin caused me to be unable to log into wp-admin
The .htaccess code below is underneath the #End WordPress.
After I was locked out I removed two lines (in italic below) thatI had added when I first installed the TSL cert:
After removing these lines everything was fine.
Originally this was the code:
<IfModule mod_rewrite.c> RewriteEngine On RewriteCond %{HTTP_HOST} ^parkedsite.com$ [OR] RewriteCond %{HTTP_HOST} ^anotherparkedsite.com$ RewriteRule ^(.*)$ https://mysite.com/$1 [R=301] <em>RewriteCond %{SERVER_PORT} 80 RewriteRule ^(.*)$ https://mysite.com/$1 [R=301,L] </em> </IfModule> # BEGIN rlrssslReallySimpleSSL rsssl_version[2.2.10] <IfModule mod_rewrite.c> RewriteEngine on RewriteCond %{HTTPS} !=on [NC] RewriteRule ^(.*)$ https://%{HTTP_HOST}/$1 [R=301,L] </IfModule> # END rlrssslReallySimpleSSL Should I make any other changes or does this look correct now? I want to make sure the parked domains all go to https://mysite.com Thank you!
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘.htaccess changes are not allowing admin login’ is closed to new replies.