沈阳手机网

 找回密码
 立即注册

QQ登录

只需一步,快速开始

沈阳手机网手机维修培训中心Apple手机报价沈阳二手笔记本报价

二手手机回收

沈阳手机靓号DJ音乐 最好听的DJ
查看: 1617|回复: 0

dede网站打开index.php跳转到install/index.php

[复制链接]
发表于 2014-2-19 00:01:22 | 显示全部楼层 |阅读模式
dede网站打开index.php跳转到install/index.php
给客户的网站做了下安全
然后打开 index.php 会自动跳转到 install/index.php
经过检查是因为为了安全起见 我吧data目录搬到了网站的上一级
解决办法就是
修改index.php 里的代码
  1. if(!file_exists(dirname(__FILE__).'/data/common.inc.php'))
  2. {
  3. header('Location:install/index.php');
  4. exit();
  5. }
复制代码
修改为
  1. if(!file_exists(dirname(__FILE__).'/../data/common.inc.php'))
  2. {
  3. header('Location:install/index.php');
  4. exit();
  5. }
复制代码
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

QQ|Archiver|手机版|小黑屋|沈阳手机网 ( 辽ICP备11004416号 )

GMT+8, 2024-5-2 16:26 , Processed in 0.024631 second(s), 19 queries .

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

快速回复 返回顶部 返回列表