小ネタ。以下のように書くことで、ページに対応した RSS Feed をブラウザに知らせる為の RSS Auto-Discovery : <link rel="alternate" /> タグを出力させることができるようです。 use CGI; my $cgi = CGI->new; print $cgi->header(-charset => 'utf-8'); print $cgi->start_html( -title => 'hoge', -head => CGI::Link({ rel => 'alternate', type => 'application/rss+xml', title => 'RSS 2.0', href => $cgi->url(-base=>1) ."/index.xml", }), ); print $cgi->end_html; 実行結果 (一部整形)