I am not able to redirect a www.miweb.com/%E2%80%8E to www.miweb.com
I tried htaccess:
Redirect 301 /%E2%80%8E http://www.miweb.com
Php
$cadena = 'http://www.miweb.com/%E2%80%8E';
if(preg_match('/\/%E2%80%8E/', $cadena)){
header( "HTTP/1.1 301 Moved Permanently" );
header( "Location: http://www.google.es" );
}