I am using SharePointe 2010, and newbie with sharepoint. I am trying to create site collections by using powershell and c#. my client wants to have different urls for each site collection within same web application something like (sc1.domain.com, sc2.domain.com ....) is it possible? thanks
Asked
Active
Viewed 1,463 times
1
-
I have tried using managed path, by using powershell like this: New-SPSite -Url $url -OwnerAlias $domainAnduser -Name $name -Template $template – Medes Sep 11 '12 at 15:18
-
http://sharepoint.stackexchange.com/questions/12702/support-for-url-rewriting I think this is what you're looking for. – RJ Cuthbertson Sep 11 '12 at 15:36
1 Answers
2
To get what you're after (unique FQDN for each site collection in the same web application) in a supported manner you'll need to use host-named site collections (Plan for host-named site collections (SharePoint 2010)). In addition to the TechNet documentation, another great primer can be found at What Every SharePoint Admin Needs to Know About Host Named Site Collections.
ciphertxt
- 421
- 3
- 12
-
Hi and thanks, I succeeded to created site collections with thier own content database. But now the problem is when I browse to them I have to log in. – Medes Sep 12 '12 at 09:47