简体   繁体   中英

Web.Config File is not able to load in Angular Application

I need some help in Deployment of Angular Application on local IIS Server .

ISS version : 10

i have deployed my Angular Application on IIS and its working fine but when i am adding web.config file in it then its giving Error . local Host URL is : http://localhost/eportal . URL rewrite extension is also installed .

when adding this config file then Application Gives error . 在此处输入图片说明

Here is Web Config File

<?xml version="1.0" encoding="UTF-8"?>
    <configuration>

      <system.webServer>
        <rewrite>
          <rules>
            <rule name="Angular Routes" stopProcessing="true">
              <match url=".*" />
              <conditions logicalGrouping="MatchAll">
                <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
                <add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
              </conditions>
              <action type="Rewrite" url="/eportal">
            </rule>
          </rules>
        </rewrite>
      </system.webServer>

    </configuration>

I guess, you need to provide the file name in the action url and your action type tag is not closed in xml

eg

<?xml version="1.0" encoding="UTF-8"?>
    <configuration>
      <system.webServer>
        <rewrite>
          <rules>
            <rule name="AngularJS" stopProcessing="true">
              <match url=".*" />
              <conditions logicalGrouping="MatchAll">
                <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
                <add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
              </conditions>
              <action type="Rewrite" url="/eportal/index.html" />
            </rule>
          </rules>
        </rewrite>
      </system.webServer>
    </configuration>

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM