美文网首页
易优cms后台进入不了,总是跳到前台页面

易优cms后台进入不了,总是跳到前台页面

作者: 阿达_74f4 | 来源:发表于2018-09-22 15:19 被阅读0次

首先确认是的运行环境是否  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

相关文章

网友评论

      本文标题:易优cms后台进入不了,总是跳到前台页面

      本文链接:https://www.haomeiwen.com/subject/wrhxoftx.html