0
私は次のURLを持っています - website.com/ABCDETest+PHP、そして私がウェブサイトにアクセスするたびに、404 - ファイルまたはディレクトリが見つかりません。私のweb.configファイルがIISでのURLの書き換え+
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name="Test" patternSyntax="Wildcard">
<match url="*"/>
<conditions>
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true"/>
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true"/>
</conditions>
<action type="Rewrite" url="index.php"/>
</rule>
</rules>
</rewrite>
</system.webServer>
で誰もが、私は404ページを取得していますし、それはindex.phpにリダイレクトされていない理由を知るために発生しますか?
ありがとうございます!これは私のために働いた。 – Ratty