这些是我运行管理员Windows Power Shell以向现有Web应用程序创建主机名网站集的命令
powershell -version 2
Add-PsSnapin Microsoft.SharePoint.PowerShell
New-SPSite http://www.test5.sp/ -OwnerAlias MyDomain\administrator -HostHeaderWebApplication http://Mywebapplication/
在这一点上,我看到在管理中心Mywebapplication
下创建的新网站集。
我在主机文件中添加了一条新记录:
127.0.0.1 test5.sp
我得到test5.sp
我编辑了iis的绑定并添加了一个新的绑定:
Type|Host Name|Port|Ip Address
http|test5.sp |80 |127.0.0.1
然后跑
iisreset /noforce
此时无法从浏览器访问test5.sp
。
你能帮忙吗?
答案 0 :(得分:0)
我设法访问了我在以下更改后创建的主机名网站集:
Type|Host Name|Port|Ip Address http|test5.sp |80 |*
[The ip address of the webapplication] test5.sp
这解决了问题:)