<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>#migration Archives - Blog IT</title>
	<atom:link href="https://blogit.create.pt/tag/migration-2/feed/" rel="self" type="application/rss+xml" />
	<link>https://blogit.create.pt/tag/migration-2/</link>
	<description>Create IT blogger community</description>
	<lastBuildDate>Thu, 16 Dec 2021 16:19:36 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.1</generator>
	<item>
		<title>How to configure HTTPS with HTTP redirect in SharePoint 2019 using Host Named Site Collections</title>
		<link>https://blogit.create.pt/miguelisidoro/2021/08/11/how-to-configure-https-with-http-redirect-in-sharepoint-2019-using-host-named-site-collections/</link>
					<comments>https://blogit.create.pt/miguelisidoro/2021/08/11/how-to-configure-https-with-http-redirect-in-sharepoint-2019-using-host-named-site-collections/#respond</comments>
		
		<dc:creator><![CDATA[Miguel Isidoro]]></dc:creator>
		<pubDate>Tue, 10 Aug 2021 23:48:37 +0000</pubDate>
				<category><![CDATA[SharePoint 2019]]></category>
		<category><![CDATA[Migration]]></category>
		<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[#https]]></category>
		<category><![CDATA[#migration]]></category>
		<category><![CDATA[#security]]></category>
		<category><![CDATA[#sharepoint2019]]></category>
		<category><![CDATA[#ssl]]></category>
		<guid isPermaLink="false">https://blogit.create.pt/?p=12345</guid>

					<description><![CDATA[<p>This post explains how you can configure a web application holding host named site collections to use HTTPS and automatically redirect HTTP redirects to HTTPS in a SharePoint 2019 farm. This post will focus on HTTPS configuration on SharePoint site, IIS bindings, Alternate Access Mappings, Search and how you can automatically redirect pages from HTTP [&#8230;]</p>
<p>The post <a href="https://blogit.create.pt/miguelisidoro/2021/08/11/how-to-configure-https-with-http-redirect-in-sharepoint-2019-using-host-named-site-collections/">How to configure HTTPS with HTTP redirect in SharePoint 2019 using Host Named Site Collections</a> appeared first on <a href="https://blogit.create.pt">Blog IT</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p>This post explains how you can configure a web application holding host named site collections to use HTTPS and automatically redirect HTTP redirects to HTTPS in a SharePoint 2019 farm. This post will focus on HTTPS configuration on SharePoint site, IIS bindings, Alternate Access Mappings, Search and how you can automatically redirect pages from HTTP to HTTPS.</p>



<h2 class="wp-block-heading"><span class="td_text_columns_two_cols">Introduction</span></h2>



<p>I am currently involved in a SharePoint 2013 to SharePoint 2019 migration of a public website solution using SharePoint 2013. Despite WCM features in SharePoint have not evolved since SharePoint 2013, the option was to upgrade to SharePoint 2019 and take advantage of existing developments.</p>



<p>The solution uses Host Named Site Collections as the basis for a multi portal platform that can be used to create multiple public sites with the same platform, making it easy to create multiple portals with little development effort.</p>



<p>This post explains the configurations necessary to configure a Host Named Site Collection using HTTPS and how to automatically redirect HTTP requests to HTTPS.</p>



<p>To learn more on Host Named Site Collections, you can read the <a href="https://docs.microsoft.com/en-us/SharePoint/administration/host-named-site-collection-architecture-and-deployment?redirectedfrom=MSDN#section6" target="_blank" rel="noreferrer noopener">Microsoft official documentation</a> or read a <a href="https://levinwayne.wordpress.com/2012/06/01/what-every-sharepoint-admin-needs-to-know-about-host-named-site-collections/" target="_blank" rel="noreferrer noopener">fantastic blog post</a> about the topic.</p>



<p>In my case, I will assume the existence of a web application that acts as the container for the site collections. To simplify, lets assume the following configuration (web application and site collection were created using HTTP first).</p>



<ul class="wp-block-list"><li>Web application URL (Default Zone): http://webapp.smartportals.pt, configured for anonymous access. This address will never be used by end users. This is the web application URL that was given to the web application when it was created. In this zone, we will automatically redirect HTTP to HTTPS in every page.</li><li>Web application URL (Intranet Zone): http://auth.smartportals.pt, configured for Windows Integrated access only. This zone will be used as an authoring environment for content managers. However, this address will never be used by end users. This web application URL was created using a web application extension into the Intranet zone, which created a new IIS site for the same web application but to be used with different authentication settings. In this zone, we will also automatically redirect HTTP to HTTPS in every page.</li><li>Web application URL (Internet Zone): http://search.smartportals.pt, configured for Windows Integrated access and anonymous access. This zone will be used only for search. This address will never be used by end users. This web application URL was created using a web application extension into the Internet zone. In this zone, <strong>we will NOT </strong>automatically redirect HTTP to HTTPS in every page since this will cause search issues when crawling the site collection (http://dev.site.pt) contents.</li><li>Site collection URL (Default Zone): http://dev.site.pt, configured for anonymous access. This address will be used by end users to access the public website. The site collection was created a PowerShell script. To learn more on how to create a Host Named Site Collection, please read the <a href="https://docs.microsoft.com/en-us/sharepoint/administration/host-named-site-collection-architecture-and-deployment" target="_blank" rel="noreferrer noopener">Microsoft official documentation</a>.</li><li>Site collection URL (Intranet Zone): http://auth.site.pt, configured for Windows Integrated authentication. This address will be used by BackOffice users to manage content of the website.</li></ul>



<h2 class="wp-block-heading">How-To Steps</h2>



<p>When configuring SSL in a SharePoint 2019 farm with Host Named Site Collections, the following topics are the most relevant:</p>



<ul class="wp-block-list"><li>Install SSL certificates</li><li>Configure Search</li><li>Configure IIS bindings</li><li>Configure Alternate Access Mappings</li><li>Configure Anonymous Access for Public Web Site</li><li>Configure Site Collection URLs</li><li>Configure Web Application Authentication Providers</li><li>Configure HTTP to HTTPS Automatic Redirect</li></ul>



<h2 class="wp-block-heading">Install SSL certificates</h2>



<p>The SSL certificate must be a wildcard certificate for the same domain as the public address of the web site. I will not focus on this topic in the post since it is very well explained over the Internet. The SSL certificates will have to be installed in every SharePoint Frontend server. To learn more on this topic, please visit <a href="https://www.digicert.com/kb/ssl-certificate-installation-microsoft-sharepoint-2013.htm" target="_blank" rel="noreferrer noopener">this blog post</a>. In our case, we used a wildcard certificate issued by a known certificate authority.</p>



<h2 class="wp-block-heading">Configure Search</h2>



<p>As you remember, both in the Default and Intranet zones, we have automatic redirection between HTTP and HTTPS. The way we configured this redirect will be explained later in the post. In order for the Search Service Application to successfully crawl the site collection (http://dev.site.pt, at this point still in HTTP) contents successfully, we must set as the Search Content Source the Web Application URL for the Internet zone (http://search.smartportals.pt). The IIS site in the Internet zone <strong>WILL NOT</strong> have any automatic redirection between HTTP and HTTPS (only the IIS sites associated with the public website and the Authoring URLs will). For crawling purposes, the web application in this zone can use the HTTP protocol since, once again, the web application URL acts as a container and will never be accessed directly by end users. While crawling, the HTTPS address of the site collection (https://dev.site.pt) will be crawled successfully since it will later be the site collection URL associated with the Default zone of the web application. The reason, once again for this, is that in the Internet zone there is no HTTP to HTTPS automatic redirection in the IIS site associated with the URL used as a Content Source URL: http://search.smartportals.pt.</p>



<p>In our case, we created two content sources, one for the website and left the default Content Source with the remaining start addresses, used mainly to crawl user profiles.</p>



<figure class="wp-block-image size-full is-style-default"><img fetchpriority="high" decoding="async" width="829" height="256" src="https://blogit.create.pt/wp-content/uploads/2021/08/SP2019_SSL_Search_Content_Sources.jpg" alt="" class="wp-image-12430" srcset="https://blogit.create.pt/wp-content/uploads/2021/08/SP2019_SSL_Search_Content_Sources.jpg 829w, https://blogit.create.pt/wp-content/uploads/2021/08/SP2019_SSL_Search_Content_Sources-300x93.jpg 300w, https://blogit.create.pt/wp-content/uploads/2021/08/SP2019_SSL_Search_Content_Sources-768x237.jpg 768w, https://blogit.create.pt/wp-content/uploads/2021/08/SP2019_SSL_Search_Content_Sources-696x215.jpg 696w" sizes="(max-width: 829px) 100vw, 829px" /><figcaption>Search content sources</figcaption></figure>



<figure class="wp-block-image size-full is-resized is-style-default"><img decoding="async" src="https://blogit.create.pt/wp-content/uploads/2021/08/SP2019_SSL_Search_Content_Source_Site.jpg" alt="" class="wp-image-12431" width="728" height="375" srcset="https://blogit.create.pt/wp-content/uploads/2021/08/SP2019_SSL_Search_Content_Source_Site.jpg 728w, https://blogit.create.pt/wp-content/uploads/2021/08/SP2019_SSL_Search_Content_Source_Site-300x155.jpg 300w, https://blogit.create.pt/wp-content/uploads/2021/08/SP2019_SSL_Search_Content_Source_Site-696x359.jpg 696w" sizes="(max-width: 728px) 100vw, 728px" /><figcaption> Search content source (Site)</figcaption></figure>



<h2 class="wp-block-heading">Configure IIS bindings</h2>



<p>In each frontend server, you will have to have two different IP Addresses. This is necessary since we need two IIS sites accepting wildcard certificates and the only way we can achieve this is having two different IP Addresses in the server, and have the bindings in the  Public and Authoring IIS web sites to use different IP Addresses. These two IIS sites (Default and Intranet zones) will have automatic redirect between HTTP and HTTPS and will have both the HTTP and HTTPS bindings. We decided to stay with the default ports, even for the Public and Authoring web sites for simplicity.</p>



<p>Default zone (Public website, anonymous access):</p>



<figure class="wp-block-image size-full is-resized"><img decoding="async" src="https://blogit.create.pt/wp-content/uploads/2021/08/SP2019_SSL_IIS_Bindings_FrontEnd.jpg" alt="" class="wp-image-12433" width="428" height="192" srcset="https://blogit.create.pt/wp-content/uploads/2021/08/SP2019_SSL_IIS_Bindings_FrontEnd.jpg 428w, https://blogit.create.pt/wp-content/uploads/2021/08/SP2019_SSL_IIS_Bindings_FrontEnd-300x135.jpg 300w" sizes="(max-width: 428px) 100vw, 428px" /><figcaption>IIS Bindings (Public Site, Default Zone)</figcaption></figure>



<p>Intranet zone (Authoring website, Integrated Windows Authentication): </p>



<figure class="wp-block-image size-full is-resized"><img decoding="async" src="https://blogit.create.pt/wp-content/uploads/2021/08/SP2019_SSL_IIS_Bindings_BackEnd.jpg" alt="" class="wp-image-12434" width="410" height="199" srcset="https://blogit.create.pt/wp-content/uploads/2021/08/SP2019_SSL_IIS_Bindings_BackEnd.jpg 410w, https://blogit.create.pt/wp-content/uploads/2021/08/SP2019_SSL_IIS_Bindings_BackEnd-300x146.jpg 300w" sizes="(max-width: 410px) 100vw, 410px" /><figcaption>IIS Bindings (Authoring Site, Intranet Zone)</figcaption></figure>



<p>Search zone (Search IIS site, Integrated Windows Authentication and Anonymous Access):</p>



<figure class="wp-block-image size-full"><img decoding="async" width="452" height="140" src="https://blogit.create.pt/wp-content/uploads/2021/08/SP2019_SSL_IIS_Bindings_Search-2.jpg" alt="" class="wp-image-12450" srcset="https://blogit.create.pt/wp-content/uploads/2021/08/SP2019_SSL_IIS_Bindings_Search-2.jpg 452w, https://blogit.create.pt/wp-content/uploads/2021/08/SP2019_SSL_IIS_Bindings_Search-2-300x93.jpg 300w" sizes="(max-width: 452px) 100vw, 452px" /><figcaption> IIS Bindings (Search Site, Internet Zone) </figcaption></figure>



<h2 class="wp-block-heading">Configure Alternate Access Mappings</h2>



<p>Alternate Access Mappings are an essencial part on any web application configuration and will play a very important role in our configuration. Each web application can have up to 5 different Public URLs that can be used to have users access the same web application using different addresses and potentially different authentication providers (Default, Intranet, Internet, Extranet and Custom). To learn more about Alternate Access Mappings, read the <a href="https://docs.microsoft.com/en-us/sharepoint/administration/configure-alternate-access-mappings" target="_blank" rel="noreferrer noopener">official Microsoft documentation</a>.</p>



<p><strong>Important Notes:</strong></p>



<ul class="wp-block-list"><li>Search IIS site address must be the default zone URL. To read more about the advantages of doing this, read the <a href="https://docs.microsoft.com/en-us/sharepoint/search/best-practices-for-crawling" target="_blank" rel="noreferrer noopener">Official Microsoft documentation</a>. With Host Named Site Collections, the Site Collection that we want to crawl must also be configured for the Default zone so that the search results will always return results starting with that URL (in our case https://dev.site.pt)</li><li><span style="color: initial">The HTTPS web application URL set in the Authoring IIS site must be set to the Intranet zone since we will configure the Authentication provider in this zone for Windows Integrated Authentication only to ensure that only authenticated users can access this address.</span></li><li>The HTTPS web application URL set in the Public IIS site must be to the Internet zone since this is the zone where we will configure the authentication provider with Windows Integrated Authentication and anonymous access so that users can access the site collection URL (in our case https://dev.site.pt).</li><li><span style="color: initial">The remainder zones are for the HTTP addresses of the Public and Authoring IIS sites</span></li></ul>



<figure class="wp-block-image size-full is-resized"><img decoding="async" src="https://blogit.create.pt/wp-content/uploads/2021/12/SP2019_SSL_AlternateAccessMappings.jpg" alt="" class="wp-image-12581" width="730" height="359" srcset="https://blogit.create.pt/wp-content/uploads/2021/12/SP2019_SSL_AlternateAccessMappings.jpg 973w, https://blogit.create.pt/wp-content/uploads/2021/12/SP2019_SSL_AlternateAccessMappings-300x148.jpg 300w, https://blogit.create.pt/wp-content/uploads/2021/12/SP2019_SSL_AlternateAccessMappings-768x378.jpg 768w, https://blogit.create.pt/wp-content/uploads/2021/12/SP2019_SSL_AlternateAccessMappings-696x343.jpg 696w, https://blogit.create.pt/wp-content/uploads/2021/12/SP2019_SSL_AlternateAccessMappings-853x420.jpg 853w, https://blogit.create.pt/wp-content/uploads/2021/12/SP2019_SSL_AlternateAccessMappings-324x160.jpg 324w, https://blogit.create.pt/wp-content/uploads/2021/12/SP2019_SSL_AlternateAccessMappings-533x261.jpg 533w" sizes="(max-width: 730px) 100vw, 730px" /></figure>



<h2 class="wp-block-heading">Configure Anonymous Access for Public Web Site</h2>



<p>To complete the configuration of anonymous access, you have to go to SharePoint permissions page (using the public address but as an authenticated user) and set anonymous access.</p>



<figure class="wp-block-image size-full"><img decoding="async" width="385" height="284" src="https://blogit.create.pt/wp-content/uploads/2021/08/SP2019_SSL_Enable_AnonymousAccess.jpg" alt="" class="wp-image-12442" srcset="https://blogit.create.pt/wp-content/uploads/2021/08/SP2019_SSL_Enable_AnonymousAccess.jpg 385w, https://blogit.create.pt/wp-content/uploads/2021/08/SP2019_SSL_Enable_AnonymousAccess-300x221.jpg 300w, https://blogit.create.pt/wp-content/uploads/2021/08/SP2019_SSL_Enable_AnonymousAccess-80x60.jpg 80w" sizes="(max-width: 385px) 100vw, 385px" /><figcaption>Enable Anonymous Access for Site Collection</figcaption></figure>



<p>After anonymous access has been enabled, you have something like the below image in your Site Collection permissions.</p>



<figure class="wp-block-image size-full is-resized"><img decoding="async" src="https://blogit.create.pt/wp-content/uploads/2021/08/SP2019_SSL_AnonymousAccess_EntireSite-1.jpg" alt="" class="wp-image-12505" width="809" height="512" srcset="https://blogit.create.pt/wp-content/uploads/2021/08/SP2019_SSL_AnonymousAccess_EntireSite-1.jpg 809w, https://blogit.create.pt/wp-content/uploads/2021/08/SP2019_SSL_AnonymousAccess_EntireSite-1-300x190.jpg 300w, https://blogit.create.pt/wp-content/uploads/2021/08/SP2019_SSL_AnonymousAccess_EntireSite-1-768x486.jpg 768w, https://blogit.create.pt/wp-content/uploads/2021/08/SP2019_SSL_AnonymousAccess_EntireSite-1-696x440.jpg 696w, https://blogit.create.pt/wp-content/uploads/2021/08/SP2019_SSL_AnonymousAccess_EntireSite-1-664x420.jpg 664w" sizes="(max-width: 809px) 100vw, 809px" /><figcaption>Anonymous Access for Site Collection</figcaption></figure>



<h2 class="wp-block-heading">Configure Site Collection URLs</h2>



<p>In this section, we will configure the different site collection URLs for the relevant zones configured in the Alternate Access Mappings in the previous section.</p>



<p>To do this, we must use rename the http://dev.site.pt to https://dev.site.pt (Default zone) using old STSADM.</p>



<pre class="wp-block-code"><code>stsadm -o renamesite -oldurl http://dev.site.pt -newurl https://dev.site.pt</code></pre>



<p>After that, we can set the remain zones URLs using SP-SiteURL PowerShell cmdlet as follows:</p>



<pre class="wp-block-code"><code>Set-SPSiteUrl (Get-SPSite 'https://dev.site.pt') -Url 'https://auth.dev.site.pt' -Zone Intranet
Set-SPSiteUrl (Get-SPSite 'https://dev.site.pt') -Url 'http://dev.site.pt' -Zone Internet
Set-SPSiteUrl (Get-SPSite 'https://dev.site.pt') -Url 'http://auth.dev.site.pt' -Zone Extranet</code></pre>



<p>If you need to remove any Site Collection URL, you can set use the Remove-SPSiteURL as follows:</p>



<pre class="wp-block-code"><code>Remove-SPSiteURL -Url http://auth.dev.site.pt</code></pre>



<p>After running the commands, we will have our HTTPS Public web site address (the one we want for Search) in the Default zone and the remaining zones set to allow the Public site web site access (HTTP and HTTPS) to be anonymous and the Authoring address to require Windows Integrated Authentication.</p>



<figure class="wp-block-image size-full"><img decoding="async" width="447" height="121" src="https://blogit.create.pt/wp-content/uploads/2021/08/SP2019_SSL_SiteCollection_URLs_Zones.jpg" alt="" class="wp-image-12447" srcset="https://blogit.create.pt/wp-content/uploads/2021/08/SP2019_SSL_SiteCollection_URLs_Zones.jpg 447w, https://blogit.create.pt/wp-content/uploads/2021/08/SP2019_SSL_SiteCollection_URLs_Zones-300x81.jpg 300w" sizes="(max-width: 447px) 100vw, 447px" /></figure>



<h2 class="wp-block-heading">Configure Web Application Authentication Providers</h2>



<p>Authentication Providers are associated with the security zones of the web application (Default, Intranet, Internet, Extranet and Custom). To learn more about Authentication Providers, please read the <a href="https://docs.microsoft.com/en-us/sharepoint/security-for-sharepoint-server/plan-user-authentication" target="_blank" rel="noreferrer noopener">Microsoft official documentation</a>.</p>



<p>For the Default and Internet zones, we set anonymous access and Windows Integrated Authentication. Default zone will allow temporarily Windows Integrated Authentication so that we can properly set Anonymous Access in the Site Collection (already explained above). The Windows Integrated Authentication setting should be removed in the end to prevent authenticated users to try accessing the Public web site as authenticated users. Internet zone must also include Windows Integrated Authentication so that the Search can properly crawl the Site Collection contents.</p>



<figure class="wp-block-image size-full"><img decoding="async" width="631" height="477" src="https://blogit.create.pt/wp-content/uploads/2021/08/SP2019_SSL_Authentication_Provider_Default_Zone.jpg" alt="" class="wp-image-12438" srcset="https://blogit.create.pt/wp-content/uploads/2021/08/SP2019_SSL_Authentication_Provider_Default_Zone.jpg 631w, https://blogit.create.pt/wp-content/uploads/2021/08/SP2019_SSL_Authentication_Provider_Default_Zone-300x227.jpg 300w, https://blogit.create.pt/wp-content/uploads/2021/08/SP2019_SSL_Authentication_Provider_Default_Zone-556x420.jpg 556w, https://blogit.create.pt/wp-content/uploads/2021/08/SP2019_SSL_Authentication_Provider_Default_Zone-80x60.jpg 80w" sizes="(max-width: 631px) 100vw, 631px" /><figcaption>Authentication Provider (Default and Internet Zones)</figcaption></figure>



<figure class="wp-block-image size-full"><img decoding="async" width="631" height="477" src="https://blogit.create.pt/wp-content/uploads/2021/08/SP2019_SSL_Authentication_Provider_Intranet_Zone.jpg" alt="" class="wp-image-12440" srcset="https://blogit.create.pt/wp-content/uploads/2021/08/SP2019_SSL_Authentication_Provider_Intranet_Zone.jpg 631w, https://blogit.create.pt/wp-content/uploads/2021/08/SP2019_SSL_Authentication_Provider_Intranet_Zone-300x227.jpg 300w, https://blogit.create.pt/wp-content/uploads/2021/08/SP2019_SSL_Authentication_Provider_Intranet_Zone-556x420.jpg 556w, https://blogit.create.pt/wp-content/uploads/2021/08/SP2019_SSL_Authentication_Provider_Intranet_Zone-80x60.jpg 80w" sizes="(max-width: 631px) 100vw, 631px" /><figcaption> Authentication Provider (Intranet Zone)</figcaption></figure>



<h2 class="wp-block-heading">Configure HTTP to HTTPS Automatic Redirect</h2>



<p>Since this is a migration from a SharePoint 2013 site using HTTP to a SharePoint 2019 using HTTPS we want to ensure if we have HTTP links in any page of the website and while Google is indexing the new site after migration is complete, that HTTP requests will be automatically redirected to HTTPS.</p>



<p>To achieve this, we installed on each of the SharePoint Frontend Servers, the <a href="https://www.iis.net/downloads/microsoft/url-rewrite" target="_blank" rel="noreferrer noopener">IIS URL Rewrite module</a>.</p>



<p>After installed, we must add the following XML configuration on the web.config on the IIS sites associated with the Default and Intranet zones (Public and Authoring web sites).</p>



<pre class="wp-block-code"><code>    &lt;staticContent&gt;
      &lt;remove fileExtension=".dll" /&gt;
      &lt;remove fileExtension=".exe" /&gt;
    &lt;/staticContent&gt;
    <strong>&lt;rewrite&gt;
      &lt;rules&gt;
        &lt;rule name="Redirect to HTTPS" enabled="true" patternSyntax="Wildcard" stopProcessing="true"&gt;
          &lt;match url="*" negate="false" /&gt;
          &lt;conditions logicalGrouping="MatchAny"&gt;
            &lt;add input="{HTTPS}" pattern="off" /&gt;
          &lt;/conditions&gt;
          &lt;action type="Redirect" url="https://{HTTP_HOST}{REQUEST_URI}" redirectType="Found" /&gt;
        &lt;/rule&gt;
      &lt;/rules&gt;
    &lt;/rewrite&gt;</strong>
 &lt;/system.webServer&gt;</code></pre>



<p>And that&#8217;s it! Hope that this can help anyone that needs to do something similar! Any feedback and suggestions to improve to the configuration we used is welcome!</p>



<p></p>



<h2 class="wp-block-heading">Related Articles</h2>



<p>To learn why your business should migrate to SharePoint Online and Office 365, click <a rel="noreferrer noopener" href="https://blogit.create.pt////miguelisidoro/2019/07/29/why-your-business-should-migrate-to-sharepoint-online-and-office-365-the-value-offer-part-1/" target="_blank">here</a> and <a rel="noreferrer noopener" href="https://blogit.create.pt////miguelisidoro/2019/07/29/why-your-business-should-migrate-to-sharepoint-online-and-office-365-the-value-offer-part-2/" target="_blank">here</a>.</p>



<p>If you want to learn how you can rename a modern SharePoint site, click <a rel="noreferrer noopener" href="https://blogit.create.pt////miguelisidoro/2019/09/23/how-to-rename-a-modern-sharepoint-site-url-in-office-365/" target="_blank">here</a>.</p>



<p>If you want to learn how to save time time scheduling your meetings, click <a aria-label="undefined (opens in a new tab)" href="https://blogit.create.pt////miguelisidoro/2020/04/12/save-time-scheduling-microsoft-teams-meetings-using-findtime/" target="_blank" rel="noreferrer noopener">here</a>.</p>



<p>If you want to learn how to enable Microsoft Teams Attendance List Download, click <a aria-label="undefined (opens in a new tab)" href="https://blogit.create.pt////miguelisidoro/2020/09/20/how-to-enable-teams-meeting-attendance-list-download-in-microsoft-365/" target="_blank" rel="noreferrer noopener">here</a>.</p>



<p>If you want to learn how to create a dynamic org-wide team in Microsoft Teams with all active employees, click <a href="https://blogit.create.pt/miguelisidoro/2020/09/21/how-to-create-a-dynamic-team-in-microsoft-teams-with-all-active-employees-in-microsoft-365/" target="_blank" rel="noreferrer noopener">here</a>.</p>



<p>If you want to modernize your SharePoint classic root site to a modern SharePoint site, click <a rel="noreferrer noopener" href="https://blogit.create.pt////miguelisidoro/2019/08/27/how-to-modernize-your-tenant-root-site-collection-in-office-365-using-invoke-spositeswap/" target="_blank">here</a>.</p>



<p>If you are a SharePoint administrator or a SharePoint developer who wants to learn more about how to install a SharePoint 2019 farm in an automated way using PowerShell, I invite you to click <a rel="noreferrer noopener" href="https://blogit.create.pt////miguelisidoro/2018/12/09/how-to-install-a-sharepoint-2019-farm-using-powershell-and-autospinstaller-part-1/" target="_blank">here</a> and <a rel="noreferrer noopener" href="https://blogit.create.pt////miguelisidoro/2018/12/09/how-to-install-a-sharepoint-2019-farm-using-powershell-and-autospinstaller-part-2/" target="_blank">here</a>.</p>



<p>If you learn how to greatly speed up your SharePoint farm update process to ensure your SharePoint farm keeps updated and you stay one step closer to start your move to the cloud, click&nbsp;<a rel="noreferrer noopener" href="https://blogit.create.pt////miguelisidoro/2019/05/02/how-to-speed-up-the-installation-of-sharepoint-cumulative-updates-using-powershell-step-by-step/" target="_blank">here</a>.</p>



<p>If you prefer to use the traditional method to update your farm and want to learn all the steps and precautions necessary to successfully keep your SharePoint farm updated, click <a rel="noreferrer noopener" href="https://blogit.create.pt////miguelisidoro/2019/04/08/how-to-install-sharepoint-cumulative-updates-in-a-sharepoint-farm-step-by-step/" target="_blank">here</a>.</p>



<p>If you want to learn how to upgrade a SharePoint 2013 farm to SharePoint 2019, click <a rel="noreferrer noopener" href="https://blogit.create.pt////miguelisidoro/2019/03/06/how-to-upgrade-from-sharepoint-2013-to-sharepoint-2019-step-by-step-part-1/" target="_blank">here </a>and <a rel="noreferrer noopener" href="https://blogit.create.pt////miguelisidoro/2019/03/06/how-to-upgrade-from-sharepoint-2013-to-sharepoint-2019-step-by-step-part-2/" target="_blank">here</a>.</p>



<p>If SharePoint 2019 is still not an option, you can learn more about how to install a SharePoint 2016 farm in an automated way using PowerShell, click <a rel="noreferrer noopener" href="https://blogit.create.pt////miguelisidoro/2018/07/28/how-to-install-a-sharepoint-2016-farm-using-powershell-and-autospinstaller-part-1/" target="_blank">here</a>&nbsp;and&nbsp;<a rel="noreferrer noopener" href="https://blogit.create.pt////miguelisidoro/2018/07/28/how-to-install-a-sharepoint-2016-farm-using-powershell-and-autospinstaller-part-2/" target="_blank">here</a>.</p>



<p>If you want to learn how to upgrade a SharePoint 2010 farm to SharePoint 2016, click <a rel="noreferrer noopener" href="https://blogit.create.pt////miguelisidoro/2019/02/04/sharepoint-upgrade-upgrading-a-sharepoint-2010-farm-to-sharepoint-2016-step-by-step-part-1/" target="_blank">here </a>and <a rel="noreferrer noopener" href="https://blogit.create.pt////miguelisidoro/2019/02/04/sharepoint-upgrade-upgrading-a-sharepoint-2010-farm-to-sharepoint-2016-step-by-step-part-2/" target="_blank">here</a>.</p>



<p>If you are new to SharePoint and Office 365 and want to learn all about it, take a look at these <a rel="noreferrer noopener" href="https://blogit.create.pt////miguelisidoro/2018/10/17/sharepoint-and-office-365-learning-resources/" target="_blank">learning resources</a>.</p>



<p>If you are work in a large organization who is using Office 365 or thinking to move to Office 365 and is considering between a single or multiple Office 365 tenants, I invite you to read <a rel="noreferrer noopener" href="https://blogit.create.pt////miguelisidoro/2019/01/07/pros-and-cons-of-single-tenant-vs-multiple-tenants-in-office-365/" target="_blank">this article</a>.</p>



<p>If you want to know all about the latest SharePoint and Office 365 announcements from Ignite and some more recent announcements, including Microsoft Search, What’s New to Build a Modern Intranet with SharePoint in Office 365, Deeper Integration between Microsoft Teams and SharePoint and the latest news on SharePoint development, click <a rel="noreferrer noopener" href="https://blogit.create.pt////miguelisidoro/2018/11/21/whats-new-for-sharepoint-and-office-365-after-microsoft-ignite-2018/" target="_blank">here</a>.</p>



<p>If your organization is still not ready to go all in to SharePoint Online and Office 365, a hybrid scenario may be the best choice. SharePoint 2019 RTM was recently announced and if you to learn all about SharePoint 2019 and all its features, click <a rel="noreferrer noopener" href="https://blogit.create.pt////miguelisidoro/2018/11/01/meet-the-new-modern-sharepoint-server-sharepoint-2019-rtm-is-here/" target="_blank">here</a>.</p>



<p>Happy SharePointing!</p>
<p>The post <a href="https://blogit.create.pt/miguelisidoro/2021/08/11/how-to-configure-https-with-http-redirect-in-sharepoint-2019-using-host-named-site-collections/">How to configure HTTPS with HTTP redirect in SharePoint 2019 using Host Named Site Collections</a> appeared first on <a href="https://blogit.create.pt">Blog IT</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://blogit.create.pt/miguelisidoro/2021/08/11/how-to-configure-https-with-http-redirect-in-sharepoint-2019-using-host-named-site-collections/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
