1. 程式人生 > >eyoucms後臺進入不了,總是跳到前臺頁面

eyoucms後臺進入不了,總是跳到前臺頁面

首先確認是的執行環境是否  iis,然後檢視空間根目錄下是否有 web.config檔案,在檔案裡新增程式碼即可,如圖:


 

        <rewrite>

            <rules>

                <rule name="Imported Rule 1" enabled="true" stopProcessing="true">

                    <match url="^(.*)$" />

                    <conditions logicalGrouping="MatchAll">

                        <add input="{HTTP_HOST}" pattern="^(.*)$" />

                        <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />

                        <add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />

                    </conditions>

                    <action type="Rewrite" url="index.php/{R:1}" />

                </rule>

            </rules>

        </rewrite>

 

轉自:http://www.eyoucms.com/bbs/1828.html