asoduk
Forum Replies Created
-
Thanks Ron. That might be the issue. We increased the number of allowed errors. I’ll keep you posted.
Forum: Plugins
In reply to: [Redirection] redirection wildcard with regex?figured it out:
source: /CMS/UI/Modules/BizBlogger/rss.aspx(.*)is regular expression
desination: /feed/
Solution: In the .htaccess, removing the domain name in the rewrite condition will allow the hiding of the admin url for multisite installs with mapped domains.
RewriteCond %{HTTP_REFERER} !^(.*)yourdomain.com/wp-admin
RewriteCond %{HTTP_REFERER} !^(.*)yourdomain.com/wp-login\.php
RewriteCond %{HTTP_REFERER} !^(.*)yourdomain.com/login
RewriteCond %{HTTP_REFERER} !^(.*)yourdomain.com/admin
RewriteCond %{HTTP_REFERER} !^(.*)yourdomain.com/registerchanging the above to the following will solve the problem:
RewriteCond %{HTTP_REFERER} !^(.*)/wp-admin
RewriteCond %{HTTP_REFERER} !^(.*)/wp-login\.php
RewriteCond %{HTTP_REFERER} !^(.*)/login
RewriteCond %{HTTP_REFERER} !^(.*)/admin
RewriteCond %{HTTP_REFERER} !^(.*)/registerForum: Fixing WordPress
In reply to: somehow locked outThanks Michael. I am going to end up just restoring a backup.