vue模式history下在iis中配置流程

1.npm run build生成代碼加密
2.在iis添加網站定位到dist文件下
第三步第四步配置是www.baidu.com/home一直從新刷新會出現404問題
3.安裝URL重寫
https://www.iis.net/downloads...
4.在dist文件下配置web.configweb

<system.webServer>
    <rewrite>
      <rules>
        <rule name="Handle History Mode and custom 404/500" 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="/" />
        </rule>
      </rules>
    </rewrite>
   </system.webServer>

遇到一個問題:多訪問幾回頁面或者端口應用程序池的狀態會結束(事件ID5002,錯誤503),緣由是後臺佔用內存太大,解決方法:要勾選預編譯併發布版本。npm

相關文章
相關標籤/搜索