当前位置:首页 » 编程语言 » thinkphp隐藏indexphp

thinkphp隐藏indexphp

发布时间: 2023-09-26 06:26:55

㈠ tp5框架index.php入口文件隐藏

一,找到/public/.htaccess文件,如果你的入口文件已经移动到根目录下,那么你的.htaccess文件也要剪切到根目录下,总之要确保.htaccess跟入口的index.php保持同级。
二,根据你的php环境分别设置.htaccess文件:
Apache:
<IfMole mod_rewrite.c>Options +FollowSymlinks -Multiviews
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L]</IfMole>

phpstudy:
<IfMole mod_rewrite.c> Options +FollowSymlinks -Multiviews
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php [L,E=PATH_INFO:$1]
</IfMole>
Nginx(在Nginx.conf中添加):
location / { // …..省略部分代码
if (!-e $request_filename) {
rewrite ^(.*)$ /index.php?s=/$1 last;
break;
}
}

热点内容
数独基本算法 发布:2025-09-19 13:14:29 浏览:528
python获取ip代理服务器 发布:2025-09-19 12:55:35 浏览:230
h5加密 发布:2025-09-19 12:13:11 浏览:782
网贷系统源码下载 发布:2025-09-19 10:56:45 浏览:114
脚本被黑 发布:2025-09-19 10:51:27 浏览:507
android自定义命名空间 发布:2025-09-19 10:31:34 浏览:461
凯立德导航文件夹名称 发布:2025-09-19 10:31:27 浏览:34
狮山编程 发布:2025-09-19 10:14:45 浏览:786
androidshape画圆 发布:2025-09-19 10:13:21 浏览:837
c语言if复合语句 发布:2025-09-19 10:12:30 浏览:718