下記のファイルに以下の文章を追加する。
/usr/local/share/namazu/filter/html.pl
# remove all comments. it's not perfect but almost works. sub remove_comments ($) { my ($contref) = @_; # remove all comments $$contref =~ s/<!--.*?-->//gs; # remove php tag. 追加 $$contref =~ s/<\?.*?\?>//gs;