我想隱藏基於窗口的託管.php擴展。從窗口服務器託管隱藏.php擴展
我想這一點使用的web.config
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<rewrite>
<rule name="hide .php extension" stopProcessing="true">
<match url="(.*)" />
<conditions>
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
</conditions>
<action type="Rewrite" url="{R:1}.php" />
</rule>
</rewrite>
</system.webServer>
</configuration>
它顯示404錯誤,請建議哪裏出了問題。
謝謝。
此規則對於我的環境中正常工作。我認爲它與你的重寫規則沒有關係。你檢查過事件日誌嗎?你的php處理程序如何爲iis工作,它應該是fast-cgi? –