重写Azure Web应用程序中的URL

前端之家收集整理的这篇文章主要介绍了重写Azure Web应用程序中的URL前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个简单的通配符路由规则我想申请我的Azure网络应用程序.
<rule name="MyRule">
  <match url="*" />
  <action type="Rewrite" url="/index.html" />
</rule>

我有没有任何选择,因为我不能RDP进入机器并摆弄IIS?这不是一个ASP.Net网站,它是一个简单的SPA应用程序.

解决方法

您需要在wwwroot文件夹中创建一个web.config文件,并在其中放置相关的配置条目.

这是一个web.config规则的示例,可以让您了解它应该是什么样子.

以下示例将默认的* .azurewebsites.net域重定向自定义域(通过http://zainrizvi.io/2016/04/07/block-default-azure-websites-domain)

<configuration>
  <system.webServer>  
    <rewrite>  
        <rules>  
          <rule name="Redirect rquests to default azure websites domain" stopProcessing="true">
            <match url="(.*)" />  
            <conditions logicalGrouping="MatchAny">
              <add input="{HTTP_HOST}" pattern="^yoursite\.azurewebsites\.net$" />
            </conditions>
            <action type="Redirect" url="http://www.yoursite.com/{R:0}" />  
          </rule>  
        </rules>  
    </rewrite>  
  </system.webServer>  
</configuration>
原文链接:https://www.f2er.com/html/231629.html

猜你在找的HTML相关文章