Author: Alexander Barkov
Email: [EMAIL PROTECTED]
Message:
> Hi there,
>
> I have the following cmd:
>
> ReverseAlias regex .*/([0-9a-fA-F]{32})/?$ $1
>
> I thought it does that when my URL's last part is a 32 char length hex number, then
>only this 32 chars go into the url table.
>
> Unfortunately, if I put this into indexer.conf, it does not index all of the pages
>what are match to this regexp.
>
This is incorrect ReverseAlias usage. ReverseAlias must
return a correctly formed ABSOLUTE url, including it's
scheme type (for example http:// ). I think you wanted something
like this:
ReverseAlias regex (.*/)([0-9a-fA-F]{32})/?$ $1$2
Reply: <http://www.mnogosearch.org/board/message.php?id=4553>
___________________________________________
If you want to unsubscribe send "unsubscribe general"
to [EMAIL PROTECTED]