1
我有以下web.config。我認爲我的這個沒什麼問題,但是我不能把它改寫成索引。我也試過url =「index.php」沒有領先/IIS忽略重寫規則
我的web.config有什麼問題嗎?或者是否還有其他可能是錯誤的(如IIS設置) - 如果是這樣,是否可以檢查而無需訪問服務器(除了FTP到頁面)?
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<configSections>
<sectionGroup name="system.webServer">
<sectionGroup name="rewrite">
<section name="rewriteMaps" overrideModeDefault="Allow" />
<section name="rules" overrideModeDefault="Allow" />
</sectionGroup>
</sectionGroup>
</configSections>
<system.webServer>
<rewrite>
<rules>
<rule name="NWCMS" stopProcessing="true">
<match url=".*" />
<action type="Rewrite" url="/index.php" />
</rule>
</rules>
</rewrite>
</system.webServer>
</configuration>