IIS 6.0
PHP 7.1.23
MYSQL 5.6.42
PHPMYADMIN 4.8.3
Я добавляю в папку веб-сайта следующий код web.config:
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.web>
<customErrors mode="Off" />
<compilation debug="true" />
</system.web>
<system.webServer>
<rewrite>
<rules>
<rule name="Main Rule" 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.php" />
</rule>
</rules>
</rewrite>
<security>
<requestFiltering allowDoubleEscaping="true" />
</security>
</system.webServer>
</configuration>
Я вхожу в phpmyadmin с правами пользователя root.
Phpmyadmin показал код ошибки: 200.
База данных ранее исчезла и не добавила новую базу данных.
Как это решить?
введите описание изображения здесь