Hi,
After plugin activation in my multisite network, I loaded the medium privacy scheme.
I used:
parameter = ‘key’
and keyvalue = ‘wolf’
and for wp-login.php I changed it to = ‘login.php’
The htaccess generated code I have inserted it into the .htaccess in the root folder
# BEGIN Hide My WP
RewriteRule ^other/js/embed\.min\.js /wp-includes/js/wp-embed.min.js?uTzS_key=wolf [QSA,L]
RewriteRule ^/login\.php //login\.php?uTzS_key=wolf [QSA,L]
RewriteRule ^other/(.*) /wp-includes/$1?uTzS_key=wolf [QSA,L]
RewriteRule ^file/(.*) /wp-content/uploads/$1?uTzS_key=wolf [QSA,L]
RewriteRule ^ext/(.*) /wp-content/plugins/$1?uTzS_key=wolf [QSA,L]
RewriteRule ^skin/([_0-9a-zA-Z-]+)/main\.css /index.php?style_wrapper=true&template_wrapper=$1&uTzS_key=wolf [QSA,L]
RewriteRule ^skin/([_0-9a-zA-Z-]+)/style\.css /nothing_404_404?uTzS_key=wolf [QSA,L]
RewriteRule ^skin/(.*) /wp-content/themes/$1?uTzS_key=wolf [QSA,L]
RewriteRule ^([_0-9a-zA-Z-]+/)?ajax /wp-admin/admin-ajax.php?uTzS_key=wolf [QSA,L]
RewriteRule ^inc/(.*) /wp-content/$1?uTzS_key=wolf [QSA,L]
RewriteRule ^(readme\.html|license\.txt|wp-content/debug\.log|wp-includes/$) /nothing_404_404?uTzS_key=wolf [QSA,L]
RewriteRule ^(((wp-content|wp-includes)/([A-Za-z0-9\-\_\/]*))|(wp-admin/(!network\/?)([A-Za-z0-9\-\_\/]+)))(\.txt|/)$ /nothing_404_404?uTzS_key=wolf [QSA,L]
# END Hide My WP
What I encounter:
https://www.wolfmeister.nl/wp-login.php?key=wolf
https://www.wolfmeister.nl/login.php?key=wolf
They ALL redirect to a 404 page not found.
How to resolve this?
Attachments:
You must be
logged in to view attached files.