>>828
PHPなら簡単
<?php
$file = 'test.swf';
header("Content-type: application/x-shockwave-flash");
header("Content-Length: ".filesize($file));
readfile($file);
exit;
?>