当前位置:首页 » 编程语言 » 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;
}
}

热点内容
java返回this 发布:2025-10-20 08:28:16 浏览:591
制作脚本网站 发布:2025-10-20 08:17:34 浏览:886
python中的init方法 发布:2025-10-20 08:17:33 浏览:579
图案密码什么意思 发布:2025-10-20 08:16:56 浏览:764
怎么清理微信视频缓存 发布:2025-10-20 08:12:37 浏览:681
c语言编译器怎么看执行过程 发布:2025-10-20 08:00:32 浏览:1011
邮箱如何填写发信服务器 发布:2025-10-20 07:45:27 浏览:253
shell脚本入门案例 发布:2025-10-20 07:44:45 浏览:111
怎么上传照片浏览上传 发布:2025-10-20 07:44:03 浏览:802
python股票数据获取 发布:2025-10-20 07:39:44 浏览:710