我应该使用哪个目录来放置test.html,以便通过浏览器使用以下网址访问它:
http://mysharepointservername.com/test.html?
如果我将文件放到C:\ inetpub \ wwwroot \ wss \ VirtualDirectories \ 80,我会收到404找不到错误。
我应该使用另一个目录放置test.html吗?
提前谢谢
答案 0 :(得分:0)
您可以在sharepoint中创建一个模块,并将test.html放在该模块下。
在elements.xml中写:
Elements xmlns="http://schemas.microsoft.com/sharepoint/">
<Module Name="CustomPage" Url="">
<File Url="CustomPage\test.html" Name="test.html" Type="Ghostable" />
</Module>
</Elements>
使用功能部署此模块。
通过这种方式,您可以使用http://mysharepointservername.com/test.html
访问该页面