欧美一区二区三区,国内熟女精品熟女A片视频小说,日本av网,小鲜肉男男GAY做受XXX网站

iis 部署 vue

錢淋西2年前8瀏覽0評論

iis是一種常用的服務器軟件,與前端框架vue結合使用能夠極大地提高網站性能和用戶體驗。

以下是iis部署vue的步驟:

1. 在iis中創建一個站點,將站點根目錄指向vue項目的打包文件(dist文件夾)。
2. 在站點中添加web.config文件,并按照以下格式進行配置:
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<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="./index.html" />
</rule>
</rules>
</rewrite>
<httpErrors errorMode="Custom" existingResponse="Replace">
<clear />
<error statusCode="404" path="./index.html" responseMode="ExecuteURL" />
<error statusCode="500" path="./index.html" responseMode="ExecuteURL" />
</httpErrors>
</system.webServer>
</configuration>
3. 重啟iis服務,訪問站點URL,即可看到vue項目的頁面。