您的位置 首页 php

thinkphp中隐藏入口文件的方法

初始url样式:http://localhost/tp5/public/index.php/index

1、将 index.php 和 .htacess 文件移出到和Public 文件平级目录;

2、修改 index.php

namespace think; // 加载基础文件require __DIR__ . '/thinkphp/base.php'; // 支持事先使用静态方法设置Request对象和Config对象 // 执行应用并响应Container::get('app')->run()->send();

3、修改 .htaccess 文件

<IfModule mod_rewrite.c>  Options +FollowSymlinks -Multiviews  RewriteEngine On   RewriteCond %{REQUEST_FILENAME} !-d  RewriteCond %{REQUEST_FILENAME} !-f  RewriteRule ^(.*)$ index.php?s=$1 [QSA,PT,L]</IfModule>

最终url样式:http://localhost/tp5/index

推荐教程:《TP5》

文章来源:智云一二三科技

文章标题:thinkphp中隐藏入口文件的方法

文章地址:https://www.zhihuclub.com/27752.shtml

关于作者: 智云科技

热门文章

网站地图