Md Jamaluddin Saiyed Ответов: 1

Получение внутренней ошибки сервера при настройке файла. htaccess в web. config


Привет
Я пытаюсь загрузить проект веб-сайта codeigniter на windows server. Когда я загрузил проект на windows server моя индексная страница работает отлично но когда я ввожу имя пользователя и пароль для входа на страницу появляется сообщение об ошибке - "
HTTP Error 500.19 - Internal Server Error
The requested page cannot be accessed because the related configuration data for the page is invalid.Detailed Error Information:
Module	   IIS Web Core
Notification	   BeginRequest
Handler	   Not yet determined
Error Code	   0x80070003
Config Error	   Cannot read configuration file
Config File	   \\?\D:\Inetpub\vhosts\sp-tapi.in\clean-note.rudra-infotech.com\test\web.config
Requested URL	   http://clean-note.rudra-infotech.com:80/test

Physical Path	   D:\Inetpub\vhosts\sp-tapi.in\clean-note.rudra-infotech.com\test
Logon Method	   Not yet determined
Logon User	   Not yet determined


Что я уже пробовал:

I have converted my .htaccess file to web.config for IIS server (using IIS 8.5)

my web.config file is 

<pre><?xml version="1.0" encoding="UTF-8"?>
<configuration>
  <system.webServer>
    <rewrite>
      <rules>
        <rule name="rule 1S" stopProcessing="true">
	<match url="^(.*)$"  />
	<action type="Rewrite" url="/index.php/{R:1}"  appendQueryString="true" />
</rule>

      </rules>
    </rewrite>
    <httpErrors>
      <remove statusCode="404" subStatusCode="-1" />
      <error statusCode="404" path="/somedir/oops404.htm" responseMode="ExecuteURL" />
    </httpErrors>
  </system.webServer>
  <system.web>
    <customErrors mode="Off" />
  </system.web>
</configuration>

1 Ответов

Рейтинг:
2

Richard Deeming

Сообщение об ошибке совершенно ясно: приложение не может прочитать файл, расположенный по адресу:

D:\Inetpub\vhosts\sp-tapi.in\clean-note.rudra-infotech.com\test\web.config

Убедитесь, что разрешения NTFS для этого файла предоставляют доступ на чтение группе IIS_IUSRS или любой другой учетной записи, от имени которой настроен ваш AppPool.