MBrady888
Forum Replies Created
-
Forum: Plugins
In reply to: IP CanonicalizationNo one responded but that is ok. I figured it out myself. I basically added the
RewriteCond %{HTTP_HOST} ^XXX\.XXX\.XXX\.XXX
RewriteRule (.*) http://www.yourdomain.com/$1 [R=301,L]to the last line of the Rewrite Engine section. I changed the XXX’s to my ip address and added my website’s domain in place of ‘http://www.yourdomain.com’
And that is it!
If you don’t know your website’s IP address, you can find it by typing in your site URL on this website:
https://www.site24x7.com/find-ip-address-of-web-site.html
Thre are lots of other great free tools on this site as well.
Good Luck!
Forum: Fixing WordPress
In reply to: Login Page Missing!Will do! Thanks again for your assistance!
Forum: Fixing WordPress
In reply to: Login Page Missing!Got it! Thank you so much!! I had ‘Hide Backend Admin Login’ checked. Is there a plugin you can recommend so that I can manage security for the login aspect of my site?
Forum: Fixing WordPress
In reply to: Login Page Missing!It worked but it deactivated ALL of my installed plugins. What do I do now?
Forum: Fixing WordPress
In reply to: Login Page Missing!Sorry for the delay. This is ALL new to me. Thanks for your patience:)
Here is the code:
# 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
Forum: Fixing WordPress
In reply to: Login Page Missing!Thank you for the quick response but how do I do that?