Azure Web App Angular 未重定向到 www
Azure Web App Angular Not redirecting to www
我的 web.config
中有以下内容
<configuration>
<system.webServer>
<httpErrors errorMode="Detailed" />
<rewrite>
<rules>
<rule name="Angular" stopProcessing="true">
<match url="^(.*)$" ignoreCase="false" />
<conditions logicalGrouping="MatchAll">
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" pattern="" ignoreCase="false" />
</conditions>
<action type="Rewrite" url="index.html" appendQueryString="true"/>
</rule>
<rule name="Redirect to www" stopProcessing="true">
<match url="(.*)" />
<conditions trackAllCaptures="false">
<add input="{HTTP_HOST}" pattern="^mydomain.com$" />
</conditions>
<action type="Redirect"
url="{MapProtocol:{HTTPS}}://www.mydomain.com/{R:1}" />
</rule>
</rules>
<rewriteMaps>
<rewriteMap name="MapProtocol">
<add key="on" value="https" />
<add key="off" value="http" />
</rewriteMap>
</rewriteMaps>
</rewrite>
</system.webServer>
</configuration>
我的 angular.json
资产中有以下内容
"assets": [
"src/favicon.ico",
"src/assets",
"src/web.config"
],
但是我的应用没有重定向。
问题是我有 www.mydomain.com
的应用服务托管证书设置
我有两个自定义域设置
www.mydomain.com(这个允许我将绑定添加到应用程序服务证书)
mydomain.com(未绑定,因为我无法添加证书)
所以我想我可以通过重定向来修复它,使其始终转到 www。但它似乎不起作用
更新
您可以RewriterConfig
在web.config文件中设置url重写功能。更多细节你可以在另一个中看到我的答案。
原始
App Service集成的Web Server不能完全控制,这是PaaS产品的属性之一。
应用服务只能使用IIS的部分功能。需要在/site/wwwroot
(即你开发的项目根目录)下的web.config文件中配置。
所有可用的 IIS 功能只能通过 web.config
文件进行配置。
解法:
• 尝试在网络配置文件中添加重定向规则。如果失败,只能使用应用网关的重写功能
• 以下是Application Gateway关于rewrite特性的一些文档,供大家参考。
我的 web.config
中有以下内容<configuration>
<system.webServer>
<httpErrors errorMode="Detailed" />
<rewrite>
<rules>
<rule name="Angular" stopProcessing="true">
<match url="^(.*)$" ignoreCase="false" />
<conditions logicalGrouping="MatchAll">
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" pattern="" ignoreCase="false" />
</conditions>
<action type="Rewrite" url="index.html" appendQueryString="true"/>
</rule>
<rule name="Redirect to www" stopProcessing="true">
<match url="(.*)" />
<conditions trackAllCaptures="false">
<add input="{HTTP_HOST}" pattern="^mydomain.com$" />
</conditions>
<action type="Redirect"
url="{MapProtocol:{HTTPS}}://www.mydomain.com/{R:1}" />
</rule>
</rules>
<rewriteMaps>
<rewriteMap name="MapProtocol">
<add key="on" value="https" />
<add key="off" value="http" />
</rewriteMap>
</rewriteMaps>
</rewrite>
</system.webServer>
</configuration>
我的 angular.json
资产中有以下内容 "assets": [
"src/favicon.ico",
"src/assets",
"src/web.config"
],
但是我的应用没有重定向。
问题是我有 www.mydomain.com
的应用服务托管证书设置我有两个自定义域设置 www.mydomain.com(这个允许我将绑定添加到应用程序服务证书) mydomain.com(未绑定,因为我无法添加证书)
所以我想我可以通过重定向来修复它,使其始终转到 www。但它似乎不起作用
更新
您可以RewriterConfig
在web.config文件中设置url重写功能。更多细节你可以在另一个
原始
App Service集成的Web Server不能完全控制,这是PaaS产品的属性之一。
应用服务只能使用IIS的部分功能。需要在/site/wwwroot
(即你开发的项目根目录)下的web.config文件中配置。
所有可用的 IIS 功能只能通过 web.config
文件进行配置。
解法:
• 尝试在网络配置文件中添加重定向规则。如果失败,只能使用应用网关的重写功能
• 以下是Application Gateway关于rewrite特性的一些文档,供大家参考。