根目录中的index.php文件是干嘛用的?
答案:2 悬赏:50 手机版
解决时间 2021-02-09 03:34
- 提问者网友:动次大次蹦擦擦
- 2021-02-08 07:56
根目录中的index.php文件是干嘛用的?
最佳答案
- 五星知识达人网友:woshuo
- 2021-02-08 09:20
www WEB部署目录(或者子目录)
├─index.php 应用入口文件
├─Apps 应用目录
├─Public 资源文件目录
├─Runtime 运行时目录
└─Think 框架目录
├─index.php 应用入口文件
├─Apps 应用目录
├─Public 资源文件目录
├─Runtime 运行时目录
└─Think 框架目录
全部回答
- 1楼网友:狂恋
- 2021-02-08 09:39
如下是php.ini中的原文说明以及默认配置:
; open_basedir, if set, limits all file operations to the defined directory
; and below. this directive makes most sense if used in a per-directory or
; per-virtualhost web server configuration file. this directive is
; *not* affected by whether safe mode is turned on or off.
open_basedir = .
open_basedir可将用户访问文件的活动范围限制在指定的区域,通常是其家目录的路径,也
可用符号"."来代表当前目录。注意用open_basedir指定的限制实际上是前缀,而不是目录名。
举例来说: 若"open_basedir = /dir/user", 那么目录 "/dir/user" 和 "/dir/user1"都是
可以访问的。所以如果要将访问限制在仅为指定的目录,请用斜线结束路径名。例如设置成:
"open_basedir = /dir/user/"
open_basedir也可以同时设置多个目录, 在windows中用分号分隔目录,在任何其它系统中用
冒号分隔目录。当其作用于apache模块时,父目录中的open_basedir路径自动被继承。
有三种方法可以在apache中为指定的用户做独立的设置:
我要举报
如以上问答信息为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
大家都在看
推荐资讯