我是网站设计和使用IIS的新手,我正在尝试在我的页面上放置一个RSS源,其中包含一个音频文件项。我创建了.rss文件并使用在线验证器对其进行了验证,然后将它和.mp3文件放在我的wwwroot文件夹中。但是当我尝试通过转到localhost / mypodcast.rss来访问rss feed时,我收到一个错误屏幕说:
HTTP错误401.3 - 未经授权您无权查看 这个目录或页面因为访问控制列表(ACL) Web上此资源的配置或加密设置 服务器
这是我的.rss文件:
<?xml version="1.0"?>
<rss version="2.0">
<channel>
<title>Calorie Counter</title>
<link>localhost</link>
<description>Weight loss website</description>
<language>en-us</language>
<copyright>2013</copyright>
<lastBuildDate>Mon, 19 Aug 2013 12:43:59
GMT</lastBuildDate>
<generator>tdscripts.com Podcast
Generator</generator>
<webMaster>pdficore@oakland.edu</webMaster>
<ttl>1</ttl>
<item>
<title>Instructions Podcast</title>
<description>our first
podcast</description>
<pubDate>Mon, 19 Aug 2013 12:43:59
GMT</pubDate>
<enclosure url="localhost/MyPodcast.mp3"
length="1837924" type="audio/mpeg"/>
</item>
</channel>
</rss>
我是否需要在IIS上配置以允许.rss文件?或者我的.rss文件有问题吗?