Hi,
I’ve tried your percent encoding solution.
But it needs the htaccess file to be modify like this :
Replace “[_0-9a-zA-Z-]” with “.”
Example :
RewriteRule ^([_0-9a-zA-Z-]+/)?wp-admin$ $1wp-admin/ [R=301,L]
it becomes
RewriteRule ^(.+/)?wp-admin$ $1wp-admin/ [R=301,L]
With percent encoding and htaccess modifications, it works well.
Thank you very much,
Fran?ois