是否有一种简单的方法(如PowerShell命令)来更改SiteCollection中的URL?

还是导出SiteCollection->删除SiteCollection(由于GUID)->导入SiteCollection的唯一方法?

最佳答案

对,那是正确的。我的移动网站脚本如下所示:

stsadm -o backup -url "http://domain/sandpit/site" -filename "c:\site.dat"
#delete old site collection
#run gradual site delete job
stsadm -o restore -url "http://domain/sites/site" -filename "c:\site.dat"

10-05 23:45