2016-07-05 57 views
0

我創建了一個新網站,本地主機上的笨並successfuly工作,但我把它上傳到的Plesk主機和它笨不會夾

<configuration> 
<system.webServer> 
    <httpErrors errorMode="Detailed" /> 
    <asp scriptErrorSentToBrowser="true"/> 
    <rewrite> 
     <rules> 
      <rule name="Imported Rule 1" stopProcessing="true"> 
       <match url="^(.*)$" ignoreCase="false" /> 
       <conditions logicalGrouping="MatchAll"> 
        <add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" /> 
        <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" /> 
       </conditions> 
       <action type="Rewrite" url="index.php?url={R:1}" appendQueryString="true" /> 
      </rule> 
     </rules> 
    </rewrite> 
</system.webServer> 
<system.web> 
    <customErrors mode="Off"/> 
    <compilation debug="true"/> 
</system.web> 

我projrct創建一個web.config工作成功,但當我去內部文件夾我得到這個錯誤

404 Page Not Found 

The page you requested was not found. 

回答

1

我不太確定這一點。

  1. 在您的本地機器上執行相同的網絡配置,並檢查了這一點。
  2. 確保您有遞歸地爲所有內部文件夾設置的權限0755。對於一個測試可能是你可以給所有內部文件夾的完整權限爲0777並進行檢查。確保您恢復到必要的權限。