> <map:match pattern="yz/**.swf">
>    <map:read src="yz/flash/{1}.swf"
> mime-type="application/futuresplash"/>
> </map:match>

Something like this will work, but your {1} contains the matched directories
plus the filename.

Change it to

<map:match pattern="yz/**/*.swf">
    <map:read src="yz/flash/{2}.swf" mime-type="application/futuresplash"/>
</map:match>

Joerg



---------------------------------------------------------------------
Please check that your question has not already been answered in the
FAQ before posting. <http://xml.apache.org/cocoon/faqs.html>

To unsubscribe, e-mail: <[EMAIL PROTECTED]>
For additional commands, e-mail: <[EMAIL PROTECTED]>

Reply via email to