![]() | |||||
![]() ![]() ![]() ![]() ![]() |
Follow the steps in the sections below to create a site.
Create a site under the current Web site
Note The Create Subsite right must be assigned to your site group for you to complete these steps. You have this right automatically if you are a member of the Administrator site group.
Note The first part of the address is provided for you.
Note If you enable unique permissions, a copy of the parent site's user accounts and site groups remain with the subsite. You can then delete any accounts and site groups that you don't want and add new ones as needed. The subsite will also retain the same site group setting for anonymous (guest) users as the parent site, unless you specify a different site group.
Create a top-level Web site by using Self-Service Site Creation
Note The Use Self-Service Site Creation right must be assigned to your site group for you to complete these steps. By default, members of the Reader, Contributor, Web Designer, and Administrator site groups have this right. Before anyone can use these steps, an administrator must first enable Self-Service Site Creation in the SharePoint Central Administration pages.
If you are in a subsite, click the Up to parent_site_name link on the top link bar to navigate to the parent site. Repeat this step until you reach the top-level site.
Note If the announcement isn't in the list, contact your server administrator to get the address (URL) of the Self-Service Site Creation page.
Note The first part of the address is provided for you.
Create a top-level Web site from SharePoint Central Administration
Create a site under a predefined URL path
The name and URL path are combined with the server name to create the full URL to the site. For example, if you create a top-level Web site on http://servername under the /sites URL path and use Site001 as the name, the full path to the new top-level Web site is http://servername/sites/site001.
Create a site at a predefined URL path
The site is created at the top level of the URL path you select. For example, if you create a top-level Web site on http://servername, at the /portal URL path, the full path to the new site is http://servername/portal.
The site owner can select a template for the site when he or she first browses to the URL, or you can browse to the URL on the confirmation page and select a template for the site yourself. You must send an e-mail message that includes the URL of the new site to the site owner and secondary owner when you have created the site. They are not notified automatically when you create a site.
Create a site from the command line
You can use the createsite operation to create a top-level Web site. The createsite operation takes the following required parameters (url, ownerlogin, owneremail, and ownername) and the following optional parameters (lcid, webtemplate, title, and description). For example, to create a top-level Web site called site1 on http://myserver/sites, you would use syntax similar to the following:
stsadm.exe -o createsite -url http://myserver/sites/site1
-ownerlogin <DOMAIN\user> -owneremail <someone@example.com>
-ownername <full name>
You can use the createweb operation to create a subsite. The createweb operation requires the url parameter and takes the following optional parameters: lcid, webtemplate, title, description, convert (used to convert an existing folder to a Web site), unique (used to specify unique permissions for the subsite), and anonaccess (used to enable anonymous access for the subsite). To create a subsite called subsite1 under the site you just created, you would use syntax similar to the following:
stsadm.exe -o createweb -url http://myserver/sites/site1/subsite1