<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
</head>
<body bgcolor="#ffffff" text="#000000">
<font size="-1"><font face="Helvetica, Arial, sans-serif">I'm using a
custom perl script in the following way:<br>
<br>
location ~ ^/resources {<br>
&nbsp;&nbsp;&nbsp; error_page 404 @fallback;<br>
}<br>
<br>
location @fallback {<br>
&nbsp;&nbsp;&nbsp; perl MyModule::handler;<br>
}<br>
<br>
The fallback works as expected, apart from that it always returns a 404
with content, rather than a 200.<br>
<br>
Is there any way to force a 200 when I'm sending content back to the
browser from either the Perl script or from the @fallback block?<br>
</font></font>
</body>
</html>