2016-03-08 60 views
-6

我在IIS上遇到CakePHP版本3.2的問題。但是,CakePHP 2.2版在相同的安裝環境下運行良好。不知道爲什麼?Cakephp在IIS中不起作用?

這是我的web.config文件。

<?xml version="1.0" encoding="UTF-8"?> 
<configuration> 
    <system.webServer> 
     <rewrite> 
      <rules> 
       <rule name="Exclude direct access to webroot/*" 
        stopProcessing="true"> 
        <match url="^webroot/(.*)$" ignoreCase="false" /> 
        <action type="None" /> 
       </rule> 
       <rule name="Rewrite routed access to assets(img, css, files, js, favicon)" 
        stopProcessing="true"> 
        <match url="^(img|css|files|js|favicon.ico)(.*)$" /> 
        <action type="Rewrite" url="webroot/{R:1}{R:2}" 
         appendQueryString="false" /> 
       </rule> 
       <rule name="Rewrite requested file/folder to index.php" 
        stopProcessing="true"> 
        <match url="^(.*)$" ignoreCase="false" /> 
        <action type="Rewrite" url="index.php" 
         appendQueryString="true" /> 
       </rule> 
      </rules> 
     </rewrite> 
    </system.webServer> 
</configuration> 

上述內容複製自Official Cakephp forum

無論我們在輸入URL,我得到下面的響應

enter image description here

注意

我嘗試了所有的相關的鏈接在SO &我張貼這種嘗試所有提供的解決方案後,但他們都沒有工作。

更多信息:

IIS版本 - 10 CakePHP的 - 3.2

我再次重申,CakePHP的2.2效果很好。

+4

您應該檢查錯誤日誌併發布相關消息。 – Sevvlor

回答

0

我想回答我自己的問題,我如何解決問題。問題不在web.config中,但真正的問題在於.gitignore。

默認情況下,它將vendor目錄添加到.gitignore。由於它沒有添加到git,所以發生了這些錯誤。