2

私のセットアップ:
SharePoint 2010 with SP1
SiteCollection URL:http://sp2010:8083/
サイト URL:http://sp2010:8083/abc

要件:サイトの URL を から に
変更する必要があります
http://sp2010:8083/abc
http://sp2010:8083/ict

私のアプローチ:
Backup-SPSite および Restore-SPSite コマンドを使用してサイトabcをバックアップし、サイトictに復元します。

問題: Backup-SPSite と Restore-SPSite はサイト コレクションでは機能しますが、サイトでは機能しません。次のエラーが表示されます

The specified URL is not a top-level Web site. The backup and
restore operations work only for top-level Web sites. Enter the URL for a site
to try the operation again.

サイトの URL を変更する方法を教えてください。Sharepoint サイトの URL を変更できないことは承知していますが、バックアップと復元を使用して同じことを実現できると思います。

Microsoft のような会社が URL を簡単に変更するオプションを提供していないことが理解できません。

ありがとう、

ニチン

4

1 に答える 1

4

使ってみましたか

Export-spweb –identity http://sp2010:8083/abc -path c:\sitebkup\mysite.bak

Import-SPWeb –identity http://sp2010:8083/ict -path c:\sitebkup\mysite.bak
于 2013-04-20T11:56:35.023 に答える