Aleksej Novikov �����(�):
> 
> Dear aseek-users,
> 
> Help please, how can I Diallow URL's with the following symbols ?
> 
> 1. % (percent)
> 2. | (pipe)
> 3.  (space)

Pipe has special meaning in regex, so you have to escape it
with \. Space is not allowed in the URL, according to
RFC 1738, 2.2 (http://www.cis.ohio-state.edu/cgi-bin/rfc/rfc1738.html)
and should be encoded as %20

As for per cent sign, I believe you can use it as-is.

For more info, see
man 7 regex

--  [EMAIL PROTECTED]  http://kir.sever.net  ICQ 7551596  --
    |_ | |\| |_| ><       |_| |\| | ><        | ) |\/|

Reply via email to