Search
 
SCRIPT & CODE EXAMPLE
 

JAVASCRIPT

application pool angular 8

<?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="./index.html" />
      </rule>
    </rules>
  </rewrite>
</system.webServer>

</configuration>
Comment

PREVIOUS NEXT
Code Example
Javascript :: vue js use component everywhere 
Javascript :: react native refresh flatlist on swipe down 
Javascript :: C# Convert DataTable to Json File using Newtonsoft.Json DLL 
Javascript :: ajax is not a function 
Javascript :: get id value jquery 
Javascript :: javascript hello world 
Javascript :: js fetch json 
Javascript :: clear form inside modal after close reactjs 
Javascript :: Flatten a multidimension array 
Javascript :: find the last occurrence of a character in a string javascript 
Javascript :: sweet alert angular 
Javascript :: next connect 
Javascript :: component vs container react 
Javascript :: javascript get content of input 
Javascript :: on scroll call function jquery 
Javascript :: extract string from string javascript based on word 
Javascript :: vue displaying a this.length 
Javascript :: pass data to slot vue 
Javascript :: how to detect if an video is over js html 
Javascript :: javascript find the longest word in a string 
Javascript :: js clearect 
Javascript :: p5js left mouse click 
Javascript :: Appending the option element using jquery each function 
Javascript :: get selected text 
Javascript :: javascript add element to serialized form array 
Javascript :: get before 6 month date javascript node js 
Javascript :: annotation 
Javascript :: sum range javascript 
Javascript :: HOW TO ADD INDEXES TO EXISTING COLLECTIONS mongodb 
Javascript :: extended class call method from super in javascript 
ADD CONTENT
Topic
Content
Source link
Name
1+3 =