私のアプリケーションでpretty urlを使いたいです。私はYiiの1.1(PHPフレームワーク)とIIS 7.5pretty url iisを設定する7.5
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<directoryBrowse enabled="false" />
<rewrite>
<rules>
<rule name="Hide Yii Index" stopProcessing="true">
<match url="." ignoreCase="false" />
<conditions>
<add input="{REQUEST_FILENAME}" matchType="IsFile" ignoreCase="false" negate="true" />
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" ignoreCase="false" negate="true" />
</conditions>
<action type="Rewrite" url="index.php" appendQueryString="true" />
</rule>
</rules>
</rewrite>
</system.webServer>
</configuration>
私はこのような私のIISの書き換えルールを設定する必要がありを使用しています。しかし、仕事ではありません。なぜ誰かが知っていますか?